pandik70
pandik70

Reputation: 195

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

Upvotes: 5

Views: 11008

Answers (2)

user2024006
user2024006

Reputation:

You have used the default styling of ul in your site.
What you can do is you can add a separate class to ul element, for eg bullets like this :-

CSS :-

.bullets {
}

.bullets li {
 list-style-type: circle;
}

HTML :-

<ul class="bullets">
 <li>dobrý zdravotní stav bez omezení, potravinářský průkaz</li>
 <li>manuální zručnost v kuchyni – rychlost, přesnost, šikovnost a      pečlivost – bez toho to nejde</li>
 <li>samostatnost a zodpovědnost</li>
 <li>radost z prodeje</li>
 <li>aktivní komunikaci se zákazníkem.</li>
</ul>

Upvotes: 1

Marcos P&#233;rez Gude
Marcos P&#233;rez Gude

Reputation: 22158

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):

 section ul li { 
     display: list-item;
 }

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

Upvotes: 7

Related Questions