• Resolved evkid

    (@evkid)


    Bullets not appearing. If I remove “list-style-type: none” Bullets come up fine in posts but then also appear in sidebar and footer. Do I have to format stylesheet somehow specifically for Posting and leave “list-style-type: none” for the rest of my site? Any idea how to do this? Thanks.

    Site is http://www.everlastingkid.com

Viewing 5 replies - 1 through 5 (of 5 total)
  • You seem to be using the apost class to wrap around posts:

    <div class=”apost”>

    So in your CSS file, add this (below whatever class has list-style-type: none, so it will overwrite the global setting for posts)

    .apost {
    list-style-type: none;
    }
    Thread Starter evkid

    (@evkid)

    Thanks for reply. Don’t I need to use

    .apost {
    list-style-type: disc;
    }

    Since I want to be able to use bullets in my posts?

    Thread Starter evkid

    (@evkid)

    Both ways did not allow for bullets to shop up in my posts.

    Thread Starter evkid

    (@evkid)

    Now I got it. I noticed an .apost ul in my theme’s stylesheet. I simply added list-style-type: disc and the bullets now show up only in my posts. The final code looks like this:

    .apost ul {
    	padding-left: 50px;
            list-style-type: disc;
    }

    I also did not remove:

    ul {
    	list-style: none outside;
    }

    Ah yes – glad you got it sorted out though 🙂

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Bullets Not Appearing in Posts’ is closed to new replies.