Search Results for 'forum css'
-
Search Results
-
Topic: Showcase: engdex.de
We have a team who have been working over summer on a site for English speaking ex-pats living in Germany.
We have chosen a Templatic theme business directory, and have integrated bbPress as a forum. There are some bbPress formatting limitations because of the theme, and we have done our best with CSS to try and make the bbPress part responsive for a mobile. We prefer the newest first comments so make use of the excellent plugin “bbpress-sort-topic-replies”.
We went through a process of evaluating many different forums, including Muut, but in the end good ol’ SEO won the battle, bbPress having nice old-fashioned sitemap entries.
So here it is (feedback welcome)!
Engdex.deTopic: Full Width Forum Pages
Good day, I am running the latest versions of WordPress and bbPress and would appreciate some assistance with getting my forum’s sub pages full width. I am using Elegant Themes’s Divi theme.
So I can choose to have the main Forum page full with by checking that in the page settins – http://secularsociety.co.za/forum/ but as soon as you go to one of the forum’s sub pages it resizes it back to a page that has a sidebar – http://secularsociety.co.za/forum/topic/ask-an-atheist/. I’ve read and tried a bunch of things without any luck. I am also not a css master, but I am willing to try anything.
Thank you for your time.
Bertus@lynq I hope you can help me.
As you see here, in the general section it shows the topic and posts count nicely on the correct place.
However on the sub-forums u can see the counts are just ext to the name. how can i position these so they get on the same position like the ones above?I tried to add a class here
// Parse arguments against default values $r = bbp_parse_args( $args, array( 'before' => '<ul class="bbp-forums-list">', 'after' => '</ul>', 'link_before' => '<li class="bbp-forum">', 'link_after' => '</li>', 'count_before' => '(', 'count_after' => ' )', 'count_sep' => ', ', 'separator' => ', ', 'forum_id' => '', 'show_topic_count' => true, 'show_reply_count' => true, ), 'list_forums' );
Like this:
// Parse arguments against default values $r = bbp_parse_args( $args, array( 'before' => '<ul class="bbp-forums-list">', 'after' => '</ul>', 'link_before' => '<li class="bbp-forum">', 'link_after' => '</li>', 'count_before' => '<div class="counts">', 'count_after' => '</div>', //'count_sep' => ', ', //'separator' => ', ', 'forum_id' => '', 'show_topic_count' => true, 'show_reply_count' => true, ), 'list_forums' );
to then style it in css, but when i try this it doesnt show the count anymore and i cANT EDIT IT IN CSS.