BBpress topic and posts positioning
-
@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.
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- You must be logged in to reply to this topic.