Search Results for 'forum css'
-
Search Results
-
At the risk of looking like a double whammy in regards to the non nesting iterations of our outputted code, just using TRs with different classes, i’ve hit across another wee issue – but this time i’m sure there’s a simple solution I just can’t see the relavent code.
I want to be able to know if a forum has children or not, or more specifically when we move up or down a level in the “xPath” iteration.
I’m using a method of using $GLOBALS->forum_parent but what this currently requires me doing is testing to see if the forum has a parent that is not a category, then checking to see if the parent is the same as the previous forums parent, and then output relavent code to nest the forum in an actual parent child format:
Category
– Forum
– Forum
– – Forum
– – Forum
– Forum
This obviously creates havok and rather messy code for the closing of the nestings.
I realise that for small websites this will look like a formatting issue, but once you reach more than 2 levels in a parent child relationship, the ability to control nested relationships makes a huge difference.
Thanks for the help folks
EDIT:
Ok, i think i’ve found half the solution to the issue, and maybe i can phrase the question better now in BBterms…
I want to know, via PHP, before any code has been sent to the browser for the forum, if it is a FIRST CHILD or a LAST CHILD.
Now obviously, BBpress knows this because it’s outputting bb-last-child bb-first-child css, but how can I access these settings on the front-page.php ?
Thanks alot for all the help
Hello everybody – I’m having a formatting issue with bbpress and IE7. You can see an example of what my problem is here –
http://wrvna.org/forum/topic.php?id=9
In FF, naturally, everything works fine, but IE7 puts the username and status underneath/inside/within the topic post. I’m using a stripped down (even further) version of the 1col_fixed
theme.
I’ve searched the forum here and can’t find anyone else with this problem. My fear is that it’s a IE7 CSS problem….
Thanks.
Plugin: _ck_’s Hidden Forum v.0.0.4*
I did this:
//$hidden_forums['label']="[H] ";
$hidden_forums['label']="<span id='shield'> </span>";so that I could use a background image. The ugly thing with this is that you see span blah blah as the browser title…
Is there a better way to do this?
Well I’ve finally done it, Intergrated my WP blog theme with bbPress. It’s not as hard as you think once you look around. Anyway check out my intergration here:
http://www.james-blogs.com (blog)
http://www.james-blogs.com/forum (forum)
(There are still 1 or two minor CSS errors but the intergration of WordPress functions has been done successfully.
It’s taken me a few days to figure it all out, but I’ve finally done it. Although it does sound like im bragging alot. I also want to share a website that could also help you do theme intergration:
http://bbpressraw.com/bbpress_blank_themes/
This site provides blank themes that are literally the bare minimum of CSS, but even better they provide blank themes in type so for example my blog layout is a 2 Column design. I would also find this layout on bbpressraw.com and then begin editing it.
Being able to get a pre-coded layout with the bare minimum needed within it, certainly helped me alot. And I was able to understand and modify to intergrate my blog theme into it.
I hope this website can help you to in intergrating your bbPress installation
Topic: No avatars show up
Hi.
I recently installed bbPress on my WordPress site here at http://agitainment.com/ics/forum/.
I’ve built a theme based on 1col_fixed 1.1 (I believe it’s kakumei with most of the CSS stripped out). In any case, when I go to my forums I can see my Gravatars and default avatars in kakumei, but when I switch on my theme they disappear.
Is there a php file I’m missing or a block of code somewhere I need to copy over from the kakumei theme to get these to work? If so, where should I put the code?
Thanks!
Topic: Get Current Forum ID?
I’m attempting to create a side nav of all the forums on my site. When a user is viewing a certain forum, I want that “tab” to be highlighted using CSS.
All I need is to assign a class=”on” attribute to the forum [li] [/li] tag if it is the current forum being viewed. Anyone know how I can check the current forum against the forum id?
Here’s the code for my menu creation:
<?php if ( bb_forums() ) : ?>
<h3><?php _e('Forums'); ?></h3>
<ul>
<li <?php if ( is_front() ) : ?>class="on"<?php endif; ?>><a>">Overview</a>
<?php while ( bb_forum() ) : ?>
<li><a>"><?php forum_name(); ?></a></li>
<?php endwhile; ?>
</ul>
<?php endif; // bb_forums() ?>