Skip to:
Content
Pages
Categories
Search
Top
Bottom

Misalignment/Margin Problem


  • Devilfish85
    Participant

    @devilfish85

    Hey everyone. I’m not the most css savvy yet, but I can usually chase down a problem after a while… not this one, it seems. Why is my text outside of the margins on the left side? I’ve already had to add a snippet of code to my theme’s style.css to take care of some strange bullets, but the text was misaligned before doing that as well I think. Thanks for your advice.


    http://www.tampere-hema.com/?forum=test-forum

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

  • Robkk
    Moderator

    @robkk

    try this

    #bbpress-forums #page-container ul li {
      text-indent: 0;
    }

    Devilfish85
    Participant

    @devilfish85

    Thanks Robkk. I’m afraid that code didn’t fix it completely, however it gave me the missing piece to figure it out.

    I had previously added a bit of found code to override my theme putting bullet points before everything in bbpress. Using your suggestion, I added the text indent to that code bit and it worked. The final solution for anyone else who finds this:

    #main-content #bbpress-forums ul ul li, #main-content #bbpress-forums ul li {
    margin: 0px;
    text-indent: 0px;
    list-style: none outside none;
    }


    Robkk
    Moderator

    @robkk

    great! glad you solved your own issue.

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