Skip to:
Content
Pages
Categories
Search
Top
Bottom

CSS Style Issues

  • .post-entry ul li{ background:url(images/ul-dot.png) no-repeat; padding-left:28px; margin-bottom:10px; }

    This one little line of code is making my bbPress forums look like crap.

    It’s difficult to explain, but you can look at my forums here and see how bullets are messing everything up. :/

    The Theme I’m using is leetpress.

    The Entire style.css is here.

    • This topic was modified 11 years, 9 months ago by kdude63.
    • This topic was modified 11 years, 9 months ago by kdude63.
Viewing 5 replies - 1 through 5 (of 5 total)

  • Lynq
    Participant

    @lynq

    Tried something like this?

    .bbpress .post-entry ul li { background: none; padding-left: 0px; margin-bottom: 0px; }
    

    By using that, it fixes it. But it removes bullets altogether in the blog section of the website. The bbpress bullets remain unaffected.

    I also noticed that the bbpress bullets work, but the image bullets appear alongside them too.


    John James Jacoby
    Keymaster

    @johnjamesjacoby

    By default, you can target bbPress specific styling using the #bbpress-forums ID.

    Thanks!

    #bbpress-forums ul li { background: none; padding-left: 0px; margin-bottom: 0px; }

    I put that below the other line, and it works like a charm.

    Now does anyone know how to change the color of the text in closed threads? >_<

Viewing 5 replies - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.
Skip to toolbar