Skip to content Skip to sidebar Skip to footer

Not Displaying Bullets In Ul

I a have a problem with displaying bullets in ul. Does anyone know where the problem is? my site and it starts with Co od vás očekáváme

Solution 1:

Your <li> tags have the display: block CSS rule that is overriding the default behaviour. The <li> elements have display: list-item to been displayed as default, with bullets. You can make something like this (based on your HTML structure):

sectionulli { 
     display: list-item;
 }

And it works automaticaly (only inside <section> <ul> places).

Post a Comment for "Not Displaying Bullets In Ul"