I know there are only a couple of us viewing this on the weekend and I am not sure what to change to get the CSS changes for colors. The only thing we have so far for editing the size is:
https://bbpress.org/forums/topic/67?replies=5#post-295
The color is determined by the #hottags portion of style.css in your theme! There you can change a few color things around!
Trent
I recently installed bbPress to localhost to experiment before I put it on a live site. Strangely, the stylesheet was being ignored. Looking at the source brought up this:
<link rel="stylesheet" href="http://localhost#support/bb-templates/kakumei/style.css" type="text/css" />
Edit: OK, I can’t seem to type a backslash here, but the # symbol in the above code snippet is actually a backslash (opposite of /)
I have no idea why the slash after localhost is backwards. It appears correctly in all other locations. For what it’s worth, here is the relevant section of my config.php file:
// If your bbPress URL is http://bbpress.example.com/forums/ , the examples would be correct.
// Adjust the domain and path to suit your actual URL.
// Just the domain name; no directories or path. There should be no trailing slash here.
$bb->domain = 'http://localhost'; // Example: 'http://bbpress.example.com'
// There should be both a leading and trailing slash here. '/' is fine if the site is in root.
$bb->path = '/support/'; // Example: '/forums/'
Any help?
It looks nice and clean, although, I notice in your own forum it doesn’t currently validate. Once you get that all happy, don’t forget to validate the css too.
I just upgrade my bbpress to 0.8. Here is what I did
1. I download the new version and copied to my server to replace all the old files.
2. Then I copied my old directories: my-plugins and my-templates, and I follow the instruction and move all previous my templates files to a subdirectory called mybbpress under my-templates.
3. But my forum is using the default bbpress theme
http://www.travelsuperlink.com/forum/bb-templates/kakumei/style.css
4. and I login to my admin panel, only find Dashboard, Users, Content, cannot find any Presentation Admin panel.
Anybody could help? many thanks.
my forum is http://travelsuperlink.com/forum
We all know that the AutoMattic guys use their own stuff, but after each site has been skinned with all their CSS magic, sometimes it’s hard to see… I thought we should savour the moment the wordpress.org forums ran with the default bbpress theme
Good work tracking that down!
<link rel="stylesheet" href="http:/forums.pfdebate.com/bb-templates/kakumei/style.css" type="text/css" />
What really is strange for me is safari on Mac OS X shows the page correctly anyways. What a smart browser.
Why that link is like that and the rest of the content is showing up right is strange though.
Trent
Viewing source I noticed this:
http:/forums.pfdebate.com/bb-templates/kakumei/style.css
You’re missing the second: / in the beginning of the URL:
http://forums.pfdebate.com/bb-templates/kakumei/style.css
Check the config.php file would be my guess..
spencerp
Hi all,
I am currently configuring BBPress for my site at http://www.babyquestions101.com’s forum, and by the looks of it it’s very promising.
I am trying to figure out if I can call a specific stylesheet for a specific page by making that call in the body page.
For instance, I know how to call multiple stylesheets through header.php. However, I would like to be able to specify a stylesheet through a page like forum.php, so that it dynamically tells header.php to call the stylesheet specific (or unique) to that page. I want this so that I can lean up my code, instead of calling everything in one css file.
The only reason the replies argument is there is for CSS: a quick and dirty way of differentiating between topics you’re up to date on and those you’re not (via a:visited { … }).
We should probably make sure we always 301 redirect to the latest URL.
Oh, and PS: Posts do have their own URL. This one’s is
https://bbpress.org/forums/topic/592?replies=6#post-3870
I make a little modify now, to shown the current_page_item in the header. Just add a class to the < li > function, which belongs to the Forum. Like :
<li class="current_page_item"><a href="http://www.mainpage.com/forum">Forum</a
See in action:
http://www.ahumder.org
then click on forum, you will see that the background changes to white.
You are able to change the color in the style.css
I’ve made a little modification, i add a tab-line in the header.php, just like the same as k2 theme.
You can see it here:
http://www.ahumder.org/forum
For modification, first put these lines in the style.css
/*- Main Menu in Header */
ul.menu {
margin: 0;
padding: 0;
position: absolute;
bottom: 0;
left: 20px;
width: 90%;
}
ul.menu li {
display: inline;
margin: 0;
}
ul.menu,
ul.menu li a {
padding: 5px 15px 6px;
}
ul.menu li a {
font-size: 1em;
color: white;
margin: 0;
}
ul.menu li a:hover {
background: #333;
color: #eee !important;
text-decoration: none;
}
ul.menu li.current_page_item a,
ul.menu li.current_page_item a:hover {
color: #333 !important;
background: white;
text-decoration: none;
}
.admintab {
position: absolute;
right: 0px;
}
* html .admintab { padding: 5px 15px 6px } /* IE hack */
a img,:link img,:visited img { border:none }
After that put these lines into header.php. But changes the href lines to your site.
<ul class="menu">
Ana Sayfa
Forum
Resimler
Duyuru Listesi
İletişim
Hope it’s useful for you, and linickx may be you could add this mod to your style.css
Elo,
Is there a way to group forums together; I’m thinking about if you tried to scale bbpress to a large forum (the largest I know) sorting through all those subjects/topics/forums to find the right place to post would be difficult.
Thoughts ?
EDIT: he, he, he, my long subject show’s a bug in the css ;o)
I have read the other thread and will watch this, but not sure it will do what I want… I understand this to be a view type thing…
I am looking for something else that would work for the forum and discussion views (maybe more too)… I have added icons next to the topics/forums… I would like to use diff icons to indicate whether there is a something new, unread for the user there… this is a common feature on other forum apps… kind of like the alternating row colors (even, odd, alt, etc) but read and unread…
might even be nice to extend for other possibilities too like sticky, locked, solved, etc…
For now, I am using the css visited technique mentioned by ardentfrost…
Thanks…
Mr Papa
Hi All,
I thought I’d share my crack at k2 for bbpress, just replace style.css with my one, it’s not perfect, but I think it’s a good start !
Download: http://www.linickx.com/files/k2-for-bbpress.v0-01.style.css
Demo: http://forum.linickx.co.uk/
Blog Post: http://www.linickx.com/blog/archives/253/k2-for-bbpress/
let me know what you think
Note: using id="current" in this way is dodgy because plugins have to generate content that co-operates with other plugins.
If another plugin also uses id="current" the page will not validate (because each ID (identity) should be unique).
You could just say id="X8VQm2_current" but (a) it would look ugly and (b) regardless, you’re not changing the identity of the row, you’re just saying something about it, so using ID is still wrong.
The solution is easy: use class="current" instead and adjust your css so that instead of #current {} you use .current {}
The example I wrote for you before shows how to do it.
There is a painful habit of mis-using the id attribute among many theme designers and that makes it difficult to know what to do or why to do it
I was having the same issue at Forums4Bauer I am using a modified version of the bbPress forum template. One thing I did was widen the whole thing, but to get rid of the hidden long names I made the following changes to the style.css file in my-templates:
#thread {
background: #eee;
list-style: none;
margin: 0 0 0 110px;
padding: 0;
}
#thread li {
padding: 1.5em 1.0em;
line-height: 1.5em;
height:100%;
}
#thread li ol, #thread li ul {
margin-left: 60px;
height:100%;
}
.threadauthor {
margin-left: -140px;
overflow: hidden;
position: absolute;
width: 100%;
}
I also added:
.threadpost {min-height:120px;}
Unfortunately that doesn’t work in IE. I’m looking for a way around a problem I’m having where short replies overlap. That’s not typically a problem, but I’m using my Graphic Display Ranks plugin, and images that are taller than some of the replies.
Hope this helps.
In style.css, can you do something like this:
.threadauthor {
margin-top: -20px;
margin-left: -110px;
/* overflow: hidden;*/
position: absolute;
width: 95px;
}
So, no more hidden overflow and move the threadauthor up 20px, which lets it bleed over to the right into the post area, but it doesn’t overwrite any text.
For the few instances where the author is too long, this might be a good solution. In my forum, less than 5% of the users have used a long name.
Another solution would be to make the font smaller or tighten up the font spacing, or even jigger the widths of the columns, but those are more major surgery for a simple display problem.
I can’t find for the life of me where to change how to get the thread author smaller. It keeps getting cut off, similar to a lot of thread’s in this forum. It might happen here if you look to the left. Does anyone know how to make either the thread post smaller or the thread author bigger? I see some place within the css, but every time I try to change something with the post author, then the post thread messes up, and vice versa. Any help would be greatly appreciated. thanks.
Theme admin, removal of support/non-resolved/resolved deal, various bug fixes, time bug, forum deletion, added plugability, css fixes, various other things.
Is there a way to modify the Private Forums plugin to allow me to grant accss only to specific users? The way I see it, it doesn’t need to be that difficult. The strategy would be:
A list (array or whatever) is added to the top of the plugin as follows:
$allowed_users_for_forum_1 = ‘username1, username2, username3’
$allowed_users_for_forum_2 = ‘username1, username2, username3’
1) If a forum is not marked private, the forum is shown (just like the original plugin does now).
2) If a forum is marked private, before it is shown, a check is made against the above list.
– If there is no listing for that forum_id, then anyone registered could see it (Just like the original plugin does now).
– If there is a listing, the forum is only shown if the user is amongst the users listed for that forum_id.
This would be a useful solution until a roles-based forum access functionality comes around.
I tried messing with this myself, but think it is a bit out of my league right now (though I am trying to learn). Is there someone out there who could swing this?
I like it, although at the bottom, “fueled with wordpress” that would be fueled with bbpress wouldn’t it?
Thanks Vaelrith.
Yeah, It’s one of those “things” that I need to change up on theme. I’ll fix that up here soon..
Really, I need to fix up the blog theme’s footer too then..
this is a great looking theme, you’ve integrated it nicely with the blog
Are you going to make it a public theme? It’s quite sexy ;p
Thanks skrimpy.
Um, I might release it to the public then, however, at the moment it’s a slopped together type job though sigh. I basically copied/pasted the blog’s style.css informations right into the bbPress stylesheet.. and so forth.
When I get some more time here, hopefully soon, I’ll make a public release of the theme.
As I’m sure others running the WordPress Gathering theme, might want to have it..

Thanks for the nice comments..

spencerp
Hi mdawaffe – Great job !
I made the php file (called it as the .mo file name – which was bbpress_il_IL.php )
And once putting it in the languages directory, combined with the improved style.css files – it did the magic.
there are two points to make though:
1) when entering a thread – there is a sliding of the info part – in the begining of the thread. as shown here:
http://www.biostatistics.co.il/forums/topic.php?id=3&replies=1
2) It might be helpful, for less technofillik people as us – to make an option in the admin panel – weather to turn the “rtl” on or off.
(another nice add on – would be to enable different “rtl” setup – on different forums on the same bbpress installation. Not that I need such a feature – but it might be worth keeping in mind)
Again, thanks a whole bunch !
After there is a solid release of a working style-rtl.css – I will gladly publish all the installation detail for the hebrew speaking community (and i believe all will be happy).
Tal.
Hi mdawaffe – Thanks for the fast reply.
If I understand you correctly – what you offer is to paste all the content of style-rtl.css, into the file style.css (in the end of it).
Well, I just tried it, and seems that the style.css has some “design conflicts” in it (look at the forum header for example)…
you can see the results at:
http://www.biostatistics.co.il/forums/
Hope you (or someone else) could help
,
Tal.
Hi people.
I wish to use the forum in the Hebrew language. And although there is a file in the installation called style-rtl.css, it does not work stand-alone (and I haven’t managed to implement it to the original style.css file)
In short – can some one prepare a working style.css file – for right to left writing forums ?!
Thanks,
Tal.
I’m still in the process of doing things with it, so, if you find things quirky, please be patient…
Anyway, I tried to get the blog’s theme around the forums themselves. I used the blog’s imagery, blog’s style.css codes right in the original bbPress stylesheet.. and so forth. I also used the WordPress.org/support/ user profile layout basically..
Well, what you think?
http://spencerp.net/forums/
Be gentle!!
spencerp