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
[SOLVED] unable to remove bullets
-
- Forum Members
- Posts: 28
- Joined: Tue Nov 21, 2006 8:02 am
[SOLVED] unable to remove bullets
Last edited by SIMONdesign.nl on Mon Feb 09, 2009 3:43 pm, edited 1 time in total.
Re: unable to remove bullets
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;
}
.clearfix ul {
list-style:none;
}
.clearfix ul li {
list-style:none;
}
Re: unable to remove bullets
At the end of your 'SAM Montage | algemeen' stylesheet, add:
ul {
list-style:none;
}
Nullig
ul {
list-style:none;
}
Nullig
-
- Forum Members
- Posts: 28
- Joined: Tue Nov 21, 2006 8:02 am
Re: unable to remove bullets
YES! That worked... Thanks a lot everyone!