Page 1 of 1

[SOLVED] Bullets in Footer

Posted: Tue Nov 22, 2011 4:32 am
by lemonie
Hi

Have just started adapting my theme and can't find the code to change the bullets in the footer. Can anybody point me in the right direction? Thanks

www-flyballstuff-co.uk

Re: Bullets in Footer

Posted: Tue Nov 22, 2011 9:26 pm
by marcelwoo
have a look at the stylesheet.css file and if you know css, I am pretty sure you can handle it.

Re: Bullets in Footer

Posted: Tue Nov 22, 2011 9:36 pm
by Mooshi
Hi!

If you go to line 1569 of your stylesheet

eg: #footer .column ul li

add color:#fff

Re: Bullets in Footer

Posted: Wed Nov 23, 2011 3:24 am
by lemonie
Thanks for the replies .. am still learning my css so couldn't find this one :choke:

Re: Bullets in Footer

Posted: Wed Nov 23, 2011 8:46 am
by marcelwoo
lemonie wrote:Thanks for the replies .. am still learning my css so couldn't find this one :choke:
open catalog\view\theme\default\stylesheet\stylesheet.css

and find:

Code: Select all

#footer .column ul li
add in the following brackets:

Code: Select all

list-style-type:none;
margin-left:-20px;
A <li></li> list will indent all its entities. So the code

Code: Select all

margin-left:-20px;
is to retract the indention done.
You can change the margin-left value to move the list rightwards or leftwards a lil bit.

Hope it works ;)

Re: [SOLVED] Bullets in Footer

Posted: Fri Nov 15, 2013 10:14 pm
by TAC
Worked for me so Thank You :D