The setting in my style pack is fine, but you have some in-line styling that is overwriting – looks like it is coming from custom css – probably in your theme custom css.
the file that is causing it looks like
/* Enter Your Custom CSS Here */
#bbpress-forums ul.bbp-lead-topic,
#bbpress-forums ul.bbp-topics,
#bbpress-forums ul.bbp-forums,
#bbpress-forums ul.bbp-replies {
font-size: 16px !important;
font-weight: bold !important;
}
/* BBPress font fix */
#bbpress-forums li.bbp-header,
#bbpress-forums li.bbp-footer {
background: #ccff99;
}
#bbpress-forums div.bbp-forum-title h3,
#bbpress-forums div.bbp-topic-title h3,
#bbpress-forums div.bbp-reply-title h3 ,
#bbpress-forums a.bbp-forum-title,
#bbpress-forums a.bbp-topic-permalink {
font-size: 18px;
font-weight: bold !important;
color: #000000;
}
#bbpress-forums a.bbp-author-name {
font-size: 14px !important;
font-weight: bold !important;
color: #008000 !important;
}
* {font-family:"Helvetica", monospace}
and you need to take out
#bbpress-forums li.bbp-header,
#bbpress-forums li.bbp-footer {
background: #ccff99;
}
as this takes priority over my plugin code
-
This reply was modified 5 years, 6 months ago by Robin W.