Page 1 of 1

[SOLVED] unable to remove bullets

Posted: Fri Feb 06, 2009 8:32 pm
by SIMONdesign.nl
Can anyone tell me what's wrong? I try to remove the bullets from the menu. I tried list-style-type:none; but it won't work...
http://www.sammontage.nl/index.php?page=gerealiseerd

Re: unable to remove bullets

Posted: Sat Feb 07, 2009 5:38 pm
by kateb
try applying "list-style:none;" to your ul and ul li "clearfix" class. So, an example might be:
.clearfix ul {
list-style:none;
}
.clearfix ul li {
list-style:none;
}

Re: unable to remove bullets

Posted: Sun Feb 08, 2009 1:36 am
by Nullig
At the end of your 'SAM Montage | algemeen' stylesheet, add:

ul {
list-style:none;
}

Nullig

Re: unable to remove bullets

Posted: Mon Feb 09, 2009 3:42 pm
by SIMONdesign.nl
YES! That worked... Thanks a lot everyone!