Search Results for 'forum css'
-
Search Results
-
Dear all
It seems frustrating to find what I thought would be an easy enough to find topic. Maybe I’m searching wrong but here goes.
After a lot of hours I finally managed to integrate WP and bbPress. I managed to create a link to my bbPress. The final step before i take a break is to create a link back to WP in my bbPress.
The closest I could find to clear cut directions was here:
http://bbpress.org/forums/topic/link-header-image-to-wordpress
I followed the instructions and changed
<h1>”><?php bb_option(‘name’); ?></h1>
to
<a href="http://www.my website.com” "><Back to my website</a>and when I get to the forum site there is nothing. No link back to my website.
(I know it looks weird to have com” “> but somehow without the second ” my bbpress log in, search box, etc gets crammed into the right side of the header)
Could anyone explain exactly how and where to change this line? Is there anything else I must change? Maybe…
… it’s because I should omit the “www”?
… I need to have the “/home” for my website?
For reference, here’s how my original header.php looks like
<?php
$_head_profile_attr = ”;
if ( bb_is_profile() ) {
global $self;
if ( !$self ) {
$_head_profile_attr = ‘ profile=”http://www.w3.org/2006/03/hcard”‘;
}
}
?>
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.1//EN” “http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”<?php bb_language_attributes( ‘1.1’ ); ?>>
<head<?php echo $_head_profile_attr; ?>>
<meta http-equiv=”X-UA-Compatible” content=”IE=8″ />
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />
<title><?php bb_title() ?></title>
<link rel=”stylesheet” href=”<?php bb_stylesheet_uri(); ?>” type=”text/css” />
<?php if ( ‘rtl’ == bb_get_option( ‘text_direction’ ) ) : ?>
<link rel=”stylesheet” href=”<?php bb_stylesheet_uri( ‘rtl’ ); ?>” type=”text/css” />
<?php endif; ?>
<?php bb_feed_head(); ?>
<?php bb_head(); ?>
</head>
<body id=”<?php bb_location(); ?>”>
<div id=”wrapper”>
<div id=”header” role=”banner”>
<h1>”><?php bb_option(‘name’); ?></h1>
<?php if ( bb_get_option(‘description’) ) : ?><p class=”description”><?php bb_option(‘description’); ?></p><?php endif; ?>
<?php if ( !in_array( bb_get_location(), array( ‘login-page’, ‘register-page’ ) ) ) login_form(); ?>
<div class=”search”>
<?php search_form(); ?>
</div>
</div>
<div id=”main”>
<?php if ( bb_is_profile() ) profile_menu(); ?>
Can anyone tell me why my forum looks like this:
?
I have been looking for a place to change the wrapping or the width, by using Firebig Lite and looking through my CSS, but I’m a newbie and can’t find where to fix it

Cheers for any help!
Hi,
I’ve been working on integrating bbpress into my WP site (blog), and have just completed the deep integration between the two (i.e. changing the old ‘get header’ tags in all the template files, etc). However, the forum portion of my forum page is all messed up. I assume that it has something to do with the style.css file somewhere? I’m just guessing though.
I’ve searched for, found, and tried literally dozens of different resources to try and figure out what’s wrong but I’m just not finding any help.
All I’m looking to do is basically create a bbpress forum that looks the same as my WP pages. I’ve got the look and feel of my WP pages into the bbpress forum, but the actual forum part is just messed up. Can someone help me out??
My website is http://www.edcreviews.com
The forum page is http://www.edcreviews.com/forum
Thanks!
I´ve modifyed Kakumei to the limit of my knowledge. See yourself at http://www.michaeljackson.no/forum
However, if I want to turn it into something different, I think the CSS is kind of clumsy made.
If you change width on one thing – you have to change it on something like ten other definitions too. Width of content, background, padding, corners etc etc.
So is there some other simplistic theme out there thats coded in a more unified way? Let´s say I want to change the size of the forum, I only want to input this ONCE, and have everything else fall in place automatically.
I know this is possible with CSS, by using percentage in sizes, instead of static pixel definitions.
Where can I find more BBPress themes anyway?
A few people have expressed concerns about the growing number of template files included with the bbp-twentyten theme. Not counting CSS/JS/Images, we’re up to 32 individual template files to handle forums, topics, replies, loops, forms, users, and pagination. These concerns are totally valid, but mostly unavoidable.
The goal for bbp-twentyten is for it to be as simple to understand as possible without tons of proprietary functions or complex logic to figure out. To do that, we’ve split some of the files into ‘parts’ that focus on specific functionalities. Some of this doesn’t make a whole lot of sense right now because of lack of documentation, and it uses functions that are new to WordPress as of 3.0, but I’m confident it’s the best way to go.
When I think back to my beginning days of learning WordPress, a lot of what I did was butcher Kubrick and make my own frankentheme. I’m trying to keep that in mind here. Since the first place people naturally make changes is on the front end of their site, this theme should make that really easy to do.
We also have an empty folder for a theme named ‘bbp-default’ which will more than likely be a full-featured theme that flexes a bit more bbPress muscle.
I think when bbPress has more eyes on the code and more developers start integrating forum files into their themes, we’ll see some really neat things start to happen.
