• http://dark7.org/journal/

    I’d like to get bullets to show only in my posts. I’ve tried editing my CSS but it keeps messing up the rest of the site. I ran some searches and found stuff about people removing bullets…gave me some ideas but nothing concrete. How would I go about this? You can see the 2nd post from my link where I have numbered the items…those lines are enclosed in
    <li> tags but the bullets wont show up.

    Here’s my css – http://dark7.org/style.css

Viewing 3 replies - 1 through 3 (of 3 total)
  • Edit that entry, and put a <ul> before the first <li>
    and a </ul> after the last </li> and see what happens ?

    Thread Starter splunk

    (@splunk)

    I tried that, same thing…no bullets.

    I’d suggest locating this in your style.css:

    ul { /* REMOVE THIS ONE!!! */
    list-style: none;
    padding: 5px 0 0 0;
    margin: 0;
    }

    and changing it to:

    #menu ul, #menu2 ul {
    list-style: none;
    padding: 5px 0 0 0;
    margin: 0;
    }

    That way the list-style property (as well as the others) will only affect ul lists in the menus (sidebars).

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘I want bullets to show only in posts?’ is closed to new replies.