Forums

[Plugin: Profilactic] Bullets (6 posts)

  1. danielsale
    Member
    Posted 1 year ago #

    I switched to a new theme over at http://www.daniel-sale.com/lifestream/ , and now I'm seeing a lot of bullet lists :(

    Might there be some CSS code I can add somewhere that will get rid of them?

  2. danielsale
    Member
    Posted 1 year ago #

    I should note they're showing up in Firefox, but not IE.

  3. danielsale
    Member
    Posted 1 year ago #

    I just noticed something else - my twitter message which contains the words "Checking out new Google Reader sharing features" has the Google Reader icon next to it.

  4. ahpatel
    Member
    Posted 1 year ago #

    try the following:

    in profilactic/style.css

    after "#profilactic ul, #profilactic li, #profilactic ol {" (line13), add:
    list-style-type: none;

  5. happyches
    Member
    Posted 1 year ago #

    #profilactic ul, #profilactic li, #profilactic ol {
    list-style-type: none;
    margin: 0px;
    padding: 1px;
    width: 100%;

    Hiya, I haven't modified the profilactic/style.css but I still get bullets on my lifestream.

    It seems that the default is already listed as list-style-type: none;

    This is my test blog:
    http://pennybutler.com/blog/?page_id=3

  6. ahpatel
    Member
    Posted 1 year ago #

    Hmmm... looks like it's inheriting the style from the following part of you .css file:

    #contentleft ul {
    	list-style-type: square;
    	margin: 0px 0px 0px 20px;
    	padding: 0px 0px 10px 0px;
    	}
    
    #contentleft ul li {
    	list-style-type: square;
    	margin: 0px 0px 0px 20px;
    	padding: 0px 0px 5px 0px;
    	}

    I'm not sure why this is taking precedence since the <div id="profilactic"> tag is nested a step closer and should be used. I tried adding the above code to my site to see what happens and I still don't see bullets.

    As a test, can you try removing the list-style-type: square; lines and see what happens?

Topic Closed

This topic has been closed to new replies.

About this Topic