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
It does not work at all… I added it to my CSS Stylesheet Editor and nothing as well.
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;
}
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.