Hi Team,
I am facing issues with BBPress & BuddyPress plugin compatibility where some fonts are visible and some are not on the page where it is basically the CSS issue looks like can you please help here on what all CSS can be used to fix it or how can this be fixed? or how we can forcibly use theme css in this plugin ?
below is the link please see and help here
https://techweu.com/forums/forum/best-smartphone-under-20000/
Hi,
Unfortunately there are no option for editing the bbpress style, but it can be achieve with a custom css like this one -> https://i.imgur.com/S84N6V4.png
The code need to be set in theme panel> custom code> custom css:
#bbpress-forums > *
{
color: #ffa301!important;
}
#bbpress-forums .bbp-topic-started-by a, #bbpress-forums .bbp-topic-started-in a , #bbpress-forums .bbp-forum-freshness a, #bbpress-forums .bbp-topic-freshness a, #bbpress-forums .bbp-forum-title, #bbpress-forums .bbp-topic-permalink
{
color: #fbf8f8!important;
}
.bbp-forum-content ul.sticky, .bbp-topics ul.sticky, .bbp-topics ul.super-sticky, .bbp-topics-front ul.super-sticky, #bbpress-forums .bbp-body .super-sticky, #bbpress-forums .bbp-body .sticky {
background-color: transparent!important;
background: transparent!important;
}
Hope this will help you!
Thanks a lot This helped my problem to be solved about 60% 🙂
can you please also share some insights on these texts which are not visible(i mean css code )for the highlighted once I have highlighted it in the images here
Hi,
Please replace the above css with this one:
#bbpress-forums > *, .bbpress .td-page-title a
{
color: #ffa301!important;
}
#bbpress-forums .bbp-topic-started-by a, #bbpress-forums .bbp-topic-started-in a , #bbpress-forums .bbp-forum-freshness a, #bbpress-forums .bbp-topic-freshness a, #bbpress-forums .bbp-forum-title, #bbpress-forums .bbp-topic-permalink
{
color: #fbf8f8!important;
}
.bbp-forum-content ul.sticky, .bbp-topics ul.sticky, .bbp-topics ul.super-sticky, .bbp-topics-front ul.super-sticky, #bbpress-forums .bbp-body .super-sticky, #bbpress-forums .bbp-body .sticky {
background-color: transparent!important;
background: transparent!important;
}
Hope this will work better.
Thank you!
Hi dear,
I tried but still, some of the text is not visible 🙁
can you please have a look I have highlighted the photo here
Please help it will be really appreciated
Hi,
Did you clear all cache, because is look that the above css is not on your website, I can not find it anywhere.
Also you can style to set the code in head of website
<style>
#bbpress-forums > *, .bbpress .td-page-title a
{
color: #ffa301!important;
}
#bbpress-forums .bbp-topic-started-by a, #bbpress-forums .bbp-topic-started-in a , #bbpress-forums .bbp-forum-freshness a, #bbpress-forums .bbp-topic-freshness a, #bbpress-forums .bbp-forum-title, #bbpress-forums .bbp-topic-permalink
{
color: #fbf8f8!important;
}
.bbp-forum-content ul.sticky, .bbp-topics ul.sticky, .bbp-topics ul.super-sticky, .bbp-topics-front ul.super-sticky, #bbpress-forums .bbp-body .super-sticky, #bbpress-forums .bbp-body .sticky {
background-color: transparent!important;
background: transparent!important;
}
</style>
Like this -> https://i.imgur.com/qhlhgMu.png and make sure that you clear all cache.
Thank you!