Skip to:
Content
Pages
Categories
Search
Top
Bottom

Question on the css for bbpress


  • atfpodcast
    Participant

    @atfpodcast

    I want to change the color background for the table where it says Forums, Topics , Replies and Freshness. i don’t know css or php I am using dreamweaver to try to figure out these short color codes. This is what I want to do: (photoshop was used to create the effect)

    Screenshot

    Like how the new ui plugin for bbpress does it but my color scheme. I just cant find the table

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

  • Robkk
    Moderator

    @robkk

    this is the css to customize the color , i already put purple in, you can change that to a specific color.

    if you are using the bbpress-new ui plugin , i dont know if that will cause a conflict or not.

    copy this css anywhere where you can put custom css

    jetpack custom css module
    custom css plugin
    bbpress.css file

    HEADER

    #bbpress-forums li.bbp-header {
    background: purple;
    }

    i also put the footer css just in case you want to edit that too.

    FOOTER

    #bbpress-forums li.bbp-header, #bbpress-forums li.bbp-footer {
        background: purple;
        border-top: 1px solid #EEE;
        font-weight: bold;
        padding: 8px;
        text-align: center;
    }

    Links that might help

    Step by step guide to setting up a bbPress forum – part 2

    bbPress Styling Crib

    Step by step guide to setting up a bbPress forum – part 3


    https://codex.bbpress.org/theme-compatibility/

    Codex


    atfpodcast
    Participant

    @atfpodcast

    It does not work at all… I added it to my CSS Stylesheet Editor and nothing as well.


    Robkk
    Moderator

    @robkk

    your theme already has some bbpress styling in the main theme stylesheet.

    it has background:none!important;

    its kind of messy just adding !important again but it did work on my end

    #bbpress-forums li.bbp-header {
    background: purple!important;
    }

    atfpodcast
    Participant

    @atfpodcast

    The author of the theme I am using has bbspress css calls in the style.css so I removed it and its working. Well I commented it out.

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