Reply To: This user has not created any topics
Ryan, firstly please stop bumping old topics, create a new topics please. I would first try running the bbPress repair tools to see if that fixes it (Tools -> Forums)
View ArticleReply To: This user has not created any topics
My apologies. I figured it would helpful for other users looking for solutions to the same problems.
View ArticleReply To: This user has not created any topics
It is not helpful, there have been vast changes to bbPress codebase since those posts and will only further confuse things.
View ArticleReply To: Theme problem
after updation same 404 errors … do i need to change anything in fucnction.php???
View ArticleReply To: Forums index in the same layout as other bb software
@kaliceos Brilliant! Exactly what I was looking for today while tweaking stuff in my project. Thanks a bunch for saving me hours of searching & templating.
View ArticleChanging Font Color & Size
Where would I need to go to increase the font size and default color? Compared to the rest of my blog, the forum font is small. thanks for any help with this issue. Nick
View ArticleReply To: Changing Font Color & Size
use css to make your changes http://codex.bbpress.org/step-by-step-guide-to-setting-up-a-bbpress-forum-part-2/ everything is pretty much in there
View ArticleReply To: Forums index in the same layout as other bb software
Thank you so much, this so should be in the core build.
View ArticleAdding border bottom to widgets
I want to add “border-bottom: 1px solid #F1F1F1″ to bbpress widgets recent topics and recent replies. How do i do that?
View ArticleReply To: Adding border bottom to widgets
read this on finding the widget class and id and customize it http://wpfab.com/how-to-customize-a-specific-wordpress-widget/ if you want to use a custom class and id for the widgets then get this...
View ArticleReply To: Adding border bottom to widgets
I tried adding #sidebar #bbp_topics_widget-4 .widget ul li { border-bottom: 1px solid #F1F1F1; } or #sidebar #bbp_topics_widget-4 { border-bottom: 1px solid #F1F1F1; } or #bbp_topics_widget-4 .widget...
View ArticleReply To: Adding border bottom to widgets
http://desimedicos.com/forums/ I am trying to add a 1px border at bottom of each of the 5 posts in 2 of my sidebar widgets.
View ArticleReply To: Adding border bottom to widgets
#bbp_topics_widget-4 li { border-bottom: 1px solid #F1F1F1; } i think this is what your looking for?
View ArticleReply To: Adding border bottom to widgets
I just added that code to custom css file. Doesn’t work.
View ArticleReply To: Adding border bottom to widgets
Even tried adding #sidebar before it. Didn’t work either.
View ArticleReply To: Adding border bottom to widgets
#bbp_topics_widget-4 ul li { border-bottom: 1px solid #F1F1F1; } they work on my end do #bbp_topics_widget-4 ul li { border-bottom: 1px solid #F1F1F1!important; } or clear your cache
View ArticleReply To: Adding border bottom to widgets
on my end whenever i used #sidebar and .widget it didnt work so #bbp_topics_widget-4 ul li { border-bottom: 1px solid #F1F1F1; } #bbp_topics_widget-4 ul li { border-bottom: 1px solid...
View ArticleReply To: Adding border bottom to widgets
#sidebar #bbp_topics_widget-4 li { border-bottom: 1px solid #F1F1F1; } This worked. Thanks a lot for support.
View Article