Skip to:
Content
Pages
Categories
Search
Top
Bottom

Integrating bbpress in my website : layout of the topic page

Viewing 3 replies - 1 through 3 (of 3 total)
  • I have just seen that the problem is only with Firefox and not IE. I think that is a problem of cell size interpretation in CSS style: bbp-entry-content and bbp-entry-header. I have not found solution.

    I looks like this issue is due to a CSS conflict in your theme’s CSS. Specifically line 733 which reads:

    .reply {
    float: left;
    margin: 0;
    }

    You are going to have to play around with it. I’d start with adding something like this to your theme’s CSS:

    .bbp-replies .reply {
    float: none;
    }

    .bbPress #content .single-entry-content {
    float: none;
    }

    It’s perfect. The problem is now resolved.

    Many thanks.

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