[Fixed] Small bug in style-bbpress.css

  • JD

    #6325

    There is just a small issue with the bbpress css stylesheet included with the theme (style-bbpres.css). This ruleset will affect the header description (or any other h2 element) on the bbpress “Your profile” page. From line 106:

    .bbp-user-home #author-description h1,
    .bbp-user-home h2 {
    font-weight: bold;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: -5px;
    }

    Changing it to this fixes the problem:

    .bbp-user-home #author-description h1,
    .bbp-user-home h2.entry-title {
    font-weight: bold;
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: -5px;
    }

    (change ‘.bbp-user-home h2’ to ‘.bbp-user-home h2.entry-title’) I don’t think that that will cause any other problems.

    Mod

    Kenneth John Odle

    #34007
    Quote:
    Changing it to this fixes the problem:

    What exactly is the problem?

    Anonymous

    #34008

    Hey Jdiesel! Thanks for notifying. Updated bbPress stylesheet. See http://code.google.com/p/graphene/source/detail?spec=svn470&r=470

    JD

    #34009

    You are welcome. Thanks for fixing it.

Viewing 4 posts - 1 through 4 (of 4 total)

  • You must be logged in to reply to this topic.