Search Results for 'forum css'
-
Search Results
-
Topic: Forget Password link ?
How to add a link to reset or recover password at my homepage of forum where there are input fields for username and password lies. MY site: http://vlovers.com/forum .. I want to add a link to recover password at the login form positioned at the top of content on front page by template-editing… I just want to know the php link command for reset password option..
Also I want to fix the width of posts to a lower limit i.e. width of the posts is adjusted according to the length of the posts but if the post contains just a few words, width of the post is one-lined which makes the look n structure unpleasing and distorting.. So what sort of css edits are required to fix the minimum width of posts ???
Topic: Change color in header
I use the Kakumei theme in bbPress 1.0.1. The forum is linked to a web site and I want to use the same colors, light green #ccff99 and dark green #003300 for the forum. I managed to change most but cannot change the header. As can be seen at http://www.32astolf.se/forum/. What part of style.css that direct the color of the header I do not understand. Please help!
I tried to use the Webe Developer add on for Firefox and when I chose CSS-> Edit CSS there I saw a version of the page as I want it but I cannot understand how to get there!
If some bbPress guru would take an hour and write down and share with us all I am sure more beginners than myself would be very grateful for a list of where in style.css you change to get the colors you want.
I looked at the Kakumei Blue but did not understand how to make a correspondent file for green or brown or other colors. I suspect this would be easy to write if you know how to. Please do if you can!
I have discovered that there is a very easy way to integrate a BBPress forum inside of a WordPress blog. I havent found anyone in the forums doing it in this way so I will explain it here.
1. Asumed that you have instaled wordpress and bbpress, and you have integrated bbpress with wordpress following the steps showed in bbpress installation process.
2. You have to go to the administration pannel in your wordpress (wp-admin)
3. Create a page named Forum. Chose HTML and include the following code:
<iframe id=”forum” name=”forum” src=”http://your_url/bbpress_folder” frameborder=”0″ framespacing=”0″ scrolling=”auto” border=”0″ style=”width:925px; height:1000px; ” >
Sorry, your browser doens’t support iframe. Please upgrade your browsers.
</iframe>
replace the bold characters for the apropiate values in your web. The number in bold is the with of your blog. In that case (I use primepress theme) it is 925
4. Now we only have to add the widget to show the page, or like in my case, the theme shows all the pages in the blog as options in the header. We only have to remove the header and the footer of the forum.
5. In your bbpress directory go to bbtemplates and make a copy of kakumei directory. You could call it noheader directory and open it.
6. Open header.php and replace this
<body id=”<?php bb_location(); ?>”>
<div id=”wrapper”>
<div id=”main”>
<div class=”search” align=”right”>
<?php search_form(); ?>
</div>
<?php if ( bb_is_profile() ) profile_menu(); ?>
with this
<body id=”<?php bb_location(); ?>”>
<div id=”wrapper”>
<div id=”main”>
<div class=”search” align=”right”>
<?php search_form(); ?>
</div>
<?php if ( bb_is_profile() ) profile_menu(); ?>
7. Open footer.php and delete this section
<div id=”footer” role=”contentinfo”>
<p><?php printf(__(‘%1$s is proudly powered by bbPress.’), bb_option(‘name’), “http://bbpress.org”) ?></p>
<!– If you like showing off the fact that your server rocks –>
<!– <p class=”showoff”>
<?php
global $bbdb;
printf(
__( ‘This page generated in %s seconds, using %d queries.’ ),
bb_number_format_i18n( bb_timer_stop(), 2 ),
bb_number_format_i18n( $bbdb->num_queries )
);
?>
</p> –>
</div>
<?php do_action(‘bb_foot’); ?>
8. Open style.css and delete this
#wrapper {
background: #fff url(‘images/page_header_tile.png’) repeat-x 0px -15px;
}
9. You can add the reference a bbpress.org in the wordpress footer.
Hope this help
You can see the result here http://www.lamentiraestaahifuera.com
This is the forum page:
I hope this is the right place to ask but I don’t know where else to go about it.
I’ve recently added bbpress to my site, and I’ve been trying to carry over the theme I use for WordPress. I’m not all that great with CSS, and there’s some weird problem with the positioning of the forum. I’m not quite sure I got all the div tags, as I’m still not 100% sure of the internal structure.
Here’s the forum link: http://www.nyahalcyon.net/forum
And here’s the website, as a reference: http://www.nyahalcyon.net
As you can see: the whole of the forum should be in the center, aligned with the background, and right now it’s very much on the left side no matter what I try. I’m obviously missing something somewhere, or I didn’t get the CSS right…
I’d really appreciate any hints or advice about this.
(I’m going to have to sort out the other pages, like the topic, forums, etc…. but for now I’d just like to get the front page working 100%.)
Topic: Putting a border on images
I’ve just added the Allow-Images plugin to a forum to bring a little life to some topics. There’s a post you can see at http://mbforum.letsdoo.org/topic/visitors-who-arent-registered#post-17.
I’m trying to figure out a way to put a 1 pixel grey border around images, like the avatar image on the left has. The avatar has its own CSS formatter, but I’m not so hot with CSS and can’t work out how to do it for the image in a post. I’ve used the usual bbcode [ img ] xyz [ /img ], but putting a CSS format tag in the [ img ] part stops the image from being displayed.
I guess I could hard code it into the plugin, but any better ideas..?
Edit:
Duh. I answered my own question. I just changed the stylesheet
img.avatar { display: block; border: 1px solid #ddd; border-width: 3px; border-style: double; }
to
img, img.avatar { display: block; border: 1px solid #ddd; border-width: 3px; border-style: double; }
A very big Thank You to everyone working on bbPress and in this forum.
Sam “The Man” Bauers (it has a ring to it, I think), any other coders behind the scenes, all of you who write such cool plugins to add great features, and those who respond to questions in this forum so promptly and in great detail. Many thanks indeed for your time, thoughts, and hard work.
I was just adding a note to a forum of mine, and realised that after a lot of hours getting it the way I want it, well, it just works. It does everything it’s supposed to, and I’ve learned tons about CSS and PHP into the bargain. This one helps new mums who’ve come to live in the UK, so in a roundabout way everyone who’s helped me has helped a mum and her baby too. Ahhh – all soft and fluffy feeling.