Search Results for 'forum css'
-
Search Results
-
I want to style the bbpress colors, but I am not seeing my changes when I add custom CSS to my Genesis child theme (Dynamik Website Builder).
It is odd because I am using Firebug to isolate which parameters need to be changed, I can alter them within the firebug window and see them change to what I’d like to happen… then when I put that code in Genesis>Dynamik Custom>CSS (my child theme’s area to add to the CSS) it does not display.
Things like this have no effect:
#bbpress-forums div.odd, #bbpress-forums ul.odd { background-color: #222222; } #bbpress-forums div.even, #bbpress-forums ul.even { background-color: #444444; }Any advice?
Hi, I want to edit the way the subforums on the homepage is displayed, so that it looks sort of like an ipb/phpbb forum. I have been able to edit the css and move the code around. But I want to know, is there a way to get the subforum’s description & freshness displayed on the homepage?
I’ve googled A LOT and seems like everyone is looking for this. I found this post, but the solution on there doesn’t seem to be working anymore…
http://bbpress.org/forums/topic/customising-bbp_list_forums-last-poster-block/page/2/#post-137229After weeks trying to find something that would work, I found the code on wordpress forums to remove completely gravatars (and redirects it was causing.. )
here is it:
function bp_remove_gravatar ($image, $params, $item_id, $avatar_dir, $css_id, $html_width, $html_height, $avatar_folder_url, $avatar_folder_dir) { $default = get_stylesheet_directory_uri() .'/images/mystery-man.jpg'; if( $image && strpos( $image, "gravatar.com" ) ){ return '<img src="' . $default . '" alt="avatar" />'; } else { return $image; } } add_filter('bp_core_fetch_avatar', 'bp_remove_gravatar', 1, 9 ); function remove_gravatar ($avatar, $id_or_email, $size, $default, $alt) { $default = get_stylesheet_directory_uri() .'/images/mystery-man.jpg'; return "<img alt='{$alt}' src='{$default}' height='{$size}' width='{$size}' />"; } add_filter('get_avatar', 'remove_gravatar', 1, 5); function bp_remove_signup_gravatar ($image) { $default = get_stylesheet_directory_uri() .'/images/mystery-man.jpg'; if( $image && strpos( $image, "gravatar.com" ) ){ return '<img src="' . $default . '" alt="avatar" width="60" height="60" />'; } else { return $image; } } add_filter('bp_get_signup_avatar', 'bp_remove_signup_gravatar', 1, 1 );As I am now planning to disable buddypress completely. I am looking for an easy way to let users upload their avatars in bbpress, anyone tried it already?
Topic: bbPress ruining widgets
I am having trouble trying to resize my forums table cells widths.
The “topics” and “posts” cells that only contain a number don’t need to be the same width as the “forum” and “freshness” cells that contain words and wrap to the next line.
When I look at the table through firebug I just see “.article th, .article td” which is part of my sytle.css and not bbpress.
Any ideas how I can make the cells widths change?
Here is an example of 1 forum I am talking about http://lifeafterlondon.com/forums-2/
Many thanks
Wordpress version: 3.6
bbPress 2.3.2
Site url: http://www.rubycore-ng.com/blog/forum/I wanted to create a custom bbPress theme, i followed the instructions here:’ Step-by-Step Guide to Creating a Custom bbPress Theme’. Having copied the following assets from the bbpress>template>default folder to my child theme:
1-bbpress folder
2-extras folder
3-js folder
4-bbpress-functions.phpI am still unable to override the styles in the default bbpress.css file.
I would appreciate clues on how to approach this.
Regards.
Topic: Some hint needed!
Hello,
I just set up a basic forum:
http://www.sugarboxing.com/forum/I would like to ask you gimme some tips on where can I look for solutions to my problems.
I do not mind you writing the solution here, but caring of your time, this is not really expected. Just links would do just fine:My problems:
Basically I want my forum look more like this one:
http://www.rosstraining.com/forum/ (this gues use phpBB though).I want
1. all forums (main and single) pages be without a sidebar
2. I want to change the skin somehow, please suggest where can I get some neat custom css I guess
3. I want all sub-forums listed line by line, not like now when they clustered in a line separated by commas
4. Maybe some extra plugins suggstionsI use WP Mantra theme just in case
Thanks in advance!
Hi.
Somehow I managed to make my submit button disappear, while adjusting my child theme. Now it’s not possible to create a new topic nor reply to existing topics. You can submit by hitting return, but of course this is not very handy.If I change to the parent theme the button is visible. But surely, I want to keep my child theme.
I’ve gone through all the adjusted css and it doesn’t seem as if any buttons has been set to “display:none”.Can someone please tell me how I get my submit button back?
You can view the test forum here
I’m using WordPress 3.6 and bbpress Version 2.3.2
My child theme is based on Magazine BasicHow can you change the background of posts and the table containing the forum titles? The background of my core wordpress site is okay (I have Responsive theme installed), but the forum area should have a different color, especially the posts. Where can I find the apporpiate code sctions for this in the CSS?
Topic: edit forum font and size
The installation instructions end by saing edit your themes css and make it look pretty. But how?
I want the forum part of my WP blog site to look the same font-wise. I am using the latest WP and Responsive theme and latest bbPress.