• Using the PageLines free theme downloaded from www.remarpro.com.

    by default the style is set up for

    list-style:none; for display of widgets in the sidebar. I want to have bullets in an unordered list in a text widget, and have tried everything but nothing is working.

    first tried adding a class to the unordered list in the text widget, then added that class in the CSS, like this:

    HTML

    <ul class="blah">
    <li>blah</li>
    </ul>

    CSS

    ul.blah li {
    list-style-type:circle;
    }

    i also tried adding the !important so it would override any other css

    did not work. so I tried placing it in-line directly

    <ul style="list-style-type:cirlc;">
    <li>blah blah</li>
    </ul>

    didnt work

    then I Control+F and found every instance of “list-style-type:none;” that existed in the stylesheet and changed it from ‘none’ to ‘circle’ and STILL nothing.

    here is a link. any help appreciated. thank you

    https://bit.ly/inodVu

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Grackle Design

    (@mikedark)

    update: looked back at my site, and what do you know, the last changes I made DID effect every other list item accept for those in the sidebar widget. I had circles in front of all the menu items. WTF!?

    .widget ul li
    remove display:block
    add margin-left:1em

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘WIt's End – list-style-type = completely non-resonsive’ is closed to new replies.