Hi
My bullet points are not showing in my un ordered lists. I have searched here and google but can’t seem to find what i have missed.
This is my code:
<ul style="list-style-type: circle;">
<li>Fully Screened</li>
<li>High Gain</li>
<li>Variable Level Control</li>
<li>Built-in Mains Power Supply</li>
<li>Easy Fix Mount Holes</li>
<li>F Connectors</li>
</ul>
A link can be seen here:
link
Can someone please point out what I’ve missed pleased?
.sitemap ul, li {
list-style-type:none;
}
Maybe it’s this?
donboe
November 3, 2010, 4:33pm
3
Or this maybe?
<ul style="list-style: circle outside none">
Why do you suddenly declare a list style in in your html. This should be done in your CSS. And why the none? It’s good to use shorthands, but you should use them the right way.
guido2004 is right. The style has two selectors .sitemap ul and li probably what was meant was a single selector .sitemap ul li
Hi
You were right guido cant believe i missed it. Thanks for pointing it out.
Donboe i only put hte css in-line whilst testing for that problem but it will be in my css.
Thanks for your help everyone.
You’re welcome. Using FF and the Firebug plugin it was easy to spot