Hi there!
I would like to add a list with some items to a sidebar, but when I use the ul-tag, the dots don’t show in front of each item. When I use the ol-tag instead, the numbers show up fine though, but that’s not what I need.
Example:
This works fine:
<ol>
<li>item #1</li>
<li>item #2</li>
<li>item #3</li>
</ol>
This doesn’t:
<ul>
<li>item #1</li>
<li>item #2</li>
<li>item #3</li>
</ul>
Thanks for your help!
Daniel
Hi SpanishPlanet!
Could you provide us with a link to the site in question so that we can take a closer look please?
Cheers!
Rikard
Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
#top .widget ul {
list-style-type: disc!important;
padding-left: 10px;
}
Best regards,
Yigit
Thanks! Had to increase the padding to 20px for the Chrome browser, but now it works :-)