<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress support forums Tag: fix</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: fix</description>
<language>en</language>
<pubDate>Wed, 03 Dec 2008 00:52:53 +0000</pubDate>

<item>
<title>shirestudios on "Can't add new forum/category..."</title>
<link>http://bbpress.org/forums/topic/cant-add-new-forumcategory#post-16395</link>
<pubDate>Thu, 22 May 2008 10:22:40 +0000</pubDate>
<dc:creator>shirestudios</dc:creator>
<guid isPermaLink="false">16395@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Okay...&#60;/p&#62;
&#60;p&#62;Just a hint everyone:  Make sure you have entered a NAME and DISCRIPTION before you click on &#34;Add Forum&#34;&#60;/p&#62;
&#60;p&#62;Aren't I dumb?!?!?  LOLOLOLOL
&#60;/p&#62;</description>
</item>
<item>
<title>shirestudios on "Can't add new forum/category..."</title>
<link>http://bbpress.org/forums/topic/cant-add-new-forumcategory#post-16393</link>
<pubDate>Thu, 22 May 2008 09:57:17 +0000</pubDate>
<dc:creator>shirestudios</dc:creator>
<guid isPermaLink="false">16393@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have the latest version of bbpress installed to my own server, and it is integrated with wordpress (also the latest).&#60;/p&#62;
&#60;p&#62;I added one new forum a few weeks ago, but today I tried and it gave me the error: &#34;Something strange happened.  Try reloading the page.&#34;&#60;/p&#62;
&#60;p&#62;I did reload the page several times, but it still doesn't work!  I am completely stuck...I can't add new forums or categories...please HELP!&#60;/p&#62;
&#60;p&#62;These plugins I have installed and activated:&#60;/p&#62;
&#60;p&#62;Use Display Name&#60;br /&#62;
Wordpress Integration&#60;br /&#62;
Allow Images&#60;br /&#62;
Avatar Upload&#60;br /&#62;
bbPress Avatars&#60;br /&#62;
bbPress Signatures&#60;/p&#62;
&#60;p&#62;That's all...anyone know how to fix this problem?&#60;/p&#62;
&#60;p&#62;Thanks in advance!!!!
&#60;/p&#62;</description>
</item>
<item>
<title>Jessica Lares on "Gap in images in table"</title>
<link>http://bbpress.org/forums/topic/gap-in-images-in-table#post-14573</link>
<pubDate>Thu, 20 Mar 2008 21:51:01 +0000</pubDate>
<dc:creator>Jessica Lares</dc:creator>
<guid isPermaLink="false">14573@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;But how about the actual content? Like where the forums are?
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Gap in images in table"</title>
<link>http://bbpress.org/forums/topic/gap-in-images-in-table#post-14571</link>
<pubDate>Thu, 20 Mar 2008 19:18:49 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">14571@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Wrap the whole thing, from beginning to end, in a div with this style: &#60;code&#62;&#38;lt;div style=&#38;quot;width: 800px; margin: 0 auto;&#38;quot;&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Put that before the beginning table tag, and then close it after the ending &#38;lt;/table&#38;gt; tag.&#60;/p&#62;
&#60;p&#62;You can separate the style from the template html by calling the div something like &#60;code&#62;&#38;lt;div id=&#38;quot;wrapper&#38;quot;&#38;gt;&#60;/code&#62; in your template then adding this to your style.css:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#wrapper {
          width: 800px;
          margin: 0 auto;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;In either case, the margin is 0 top and bottom, and auto left and right, which means it will be centered horizontally in the browser no matter what the size of the browser viewport.
&#60;/p&#62;</description>
</item>
<item>
<title>Jessica Lares on "Gap in images in table"</title>
<link>http://bbpress.org/forums/topic/gap-in-images-in-table#post-14568</link>
<pubDate>Thu, 20 Mar 2008 18:49:31 +0000</pubDate>
<dc:creator>Jessica Lares</dc:creator>
<guid isPermaLink="false">14568@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Last question, how would I align my tables so they're not on the left?
&#60;/p&#62;</description>
</item>
<item>
<title>Jessica Lares on "Gap in images in table"</title>
<link>http://bbpress.org/forums/topic/gap-in-images-in-table#post-14567</link>
<pubDate>Thu, 20 Mar 2008 18:07:04 +0000</pubDate>
<dc:creator>Jessica Lares</dc:creator>
<guid isPermaLink="false">14567@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thank you! It worked perfect!
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Gap in images in table"</title>
<link>http://bbpress.org/forums/topic/gap-in-images-in-table#post-14566</link>
<pubDate>Thu, 20 Mar 2008 17:48:35 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">14566@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Well, when I validate the page, there are errors around line 318 which is where a bunch of td/tr/table end tags are located.  The fact that they are improperly nested (i.e. they are closed here but are not open) means they were probably improperly closed (or not closed) elsewhere.&#60;/p&#62;
&#60;p&#62;But, just adding the &#60;code&#62;style=&#38;quot;display: block;&#38;quot;&#60;/code&#62;  to the &#60;strong&#62;&#38;lt;img&#38;gt;&#60;/strong&#62; tags as sambauers suggested should take care of it without you having to fix the improper code.  It should look fine when you do that and replace the stylesheet reference.
&#60;/p&#62;</description>
</item>
<item>
<title>Jessica Lares on "Gap in images in table"</title>
<link>http://bbpress.org/forums/topic/gap-in-images-in-table#post-14565</link>
<pubDate>Thu, 20 Mar 2008 16:55:49 +0000</pubDate>
<dc:creator>Jessica Lares</dc:creator>
<guid isPermaLink="false">14565@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;How are my tables messed up? They seem to be intact, I know that it doesn't validate because of the background and alignment. But I see nothing else.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Gap in images in table"</title>
<link>http://bbpress.org/forums/topic/gap-in-images-in-table#post-14563</link>
<pubDate>Thu, 20 Mar 2008 13:53:47 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">14563@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;So, you changed something but it's still not fixed?  The page still does not validate and the markup is still incorrect.  The nested tables you have now make it even MORE difficult to fix.&#60;/p&#62;
&#60;p&#62;I think until you fix your markup it is going to be difficult to elicit free help.  My first piece of advice is to fix the markup.  In the process, you may discover why it's doing this.&#60;/p&#62;
&#60;p&#62;Good luck.
&#60;/p&#62;</description>
</item>
<item>
<title>Jessica Lares on "Gap in images in table"</title>
<link>http://bbpress.org/forums/topic/gap-in-images-in-table#post-14560</link>
<pubDate>Thu, 20 Mar 2008 13:14:45 +0000</pubDate>
<dc:creator>Jessica Lares</dc:creator>
<guid isPermaLink="false">14560@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It has nothing to do with the CSS as you can see now and my tables are okay.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "Gap in images in table"</title>
<link>http://bbpress.org/forums/topic/gap-in-images-in-table#post-14557</link>
<pubDate>Thu, 20 Mar 2008 06:57:46 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">14557@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I think adding:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;style=&#38;quot;display:block;&#38;quot;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;.&#60;br /&#62;
To the images will work
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Gap in images in table"</title>
<link>http://bbpress.org/forums/topic/gap-in-images-in-table#post-14556</link>
<pubDate>Thu, 20 Mar 2008 06:46:14 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">14556@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Which gaps are you talking about specifically?  I see just one between the header and the forums, maybe.  Then maybe between the top and those side images as well.&#60;/p&#62;
&#60;p&#62;1.  Don't use tables for layout, use divs if you can.&#60;/p&#62;
&#60;p&#62;2.  Validate your layout CSS and HTML and fix those problems first.&#60;br /&#62;
&#60;a href=&#34;http://validator.w3.org/&#34; rel=&#34;nofollow&#34;&#62;http://validator.w3.org/&#60;/a&#62; (XHTML needs some work)&#60;br /&#62;
&#60;a href=&#34;http://jigsaw.w3.org/css-validator/&#34; rel=&#34;nofollow&#34;&#62;http://jigsaw.w3.org/css-validator/&#60;/a&#62; (CSS is OK)&#60;/p&#62;
&#60;p&#62;3.  Looks like there was some cutting and pasting going on.  The main problem, I think, is that there are tags for two tables there, but the top table (with this image gregjamesforum_01.jpg) is not really marked up as a table. There are no row and table data tags.  So, that's invalid.  Then, a new table is started below.  That's why there's a gap.&#60;/p&#62;
&#60;p&#62;I would fix the improper markup and then put everything in one table (if you are going to continue using tables) so there is no gap between the two tables.  That's why there's a gap beneath that top image right now.&#60;/p&#62;
&#60;p&#62;Also, there is nothing in your problem that is specific to bbPress, so you can seek support at any CSS/HTML forum as well if there's not enough help forthcoming here.
&#60;/p&#62;</description>
</item>
<item>
<title>Jessica Lares on "Gap in images in table"</title>
<link>http://bbpress.org/forums/topic/gap-in-images-in-table#post-14555</link>
<pubDate>Thu, 20 Mar 2008 03:20:27 +0000</pubDate>
<dc:creator>Jessica Lares</dc:creator>
<guid isPermaLink="false">14555@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm putting together a skin for my forum and there's a huge cap in the tables and images, like I have some cellpadding issues&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gregjames.org/forum/&#34; rel=&#34;nofollow&#34;&#62;http://www.gregjames.org/forum/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;How would I go along as to fixing this?
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "Support Forum &#038; My Views Compatibility"</title>
<link>http://bbpress.org/forums/topic/support-forum-038-my-views-compatibility#post-11210</link>
<pubDate>Sun, 30 Sep 2007 13:01:59 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">11210@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hi, I'll be working on my bbpress stuff again later in October but thanks for figuring this out. I wouldn't normally test it with the support forum plugin so I wasn't aware of that behavior.&#60;/p&#62;
&#60;p&#62;Not sure why My Views is trashing the support forum views  but I'll investigate further sometime soon - it might have to do with the way My Views lets you re-order the views, though it should not delete any.&#60;/p&#62;
&#60;p&#62;(you're using v0.08 correct?)
&#60;/p&#62;</description>
</item>
<item>
<title>neyoung on "Support Forum &#038; My Views Compatibility"</title>
<link>http://bbpress.org/forums/topic/support-forum-038-my-views-compatibility#post-11134</link>
<pubDate>Thu, 27 Sep 2007 09:30:39 +0000</pubDate>
<dc:creator>neyoung</dc:creator>
<guid isPermaLink="false">11134@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have both the My Views and Support Forums plugins installed.  They work well together except for 1 thing.  Both plugins add a new filter to bb_views.&#60;/p&#62;
&#60;p&#62;If both plugins are running the new views from My Views are the only ones to show up.  The Support Forums views are not listed.  After poking through the code I was able to fix it by making sure that the Support Forums bb_views filter was added AFTER the My Views bb_views filter.  To do so edit support-forum.php .&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;Replace&#60;/strong&#62; line 432&#60;br /&#62;
--------------------------------&#60;br /&#62;
&#60;code&#62;add_filter(&#38;#39;bb_views&#38;#39;, array(&#38;#38;$this, &#38;#39;addViews&#38;#39;));&#60;/code&#62;&#60;br /&#62;
--------------------------------&#60;/p&#62;
&#60;p&#62;&#60;strong&#62;With&#60;/strong&#62;&#60;br /&#62;
--------------------------------&#60;br /&#62;
&#60;code&#62;add_filter(&#38;#39;bb_views&#38;#39;, array(&#38;#38;$this, &#38;#39;addViews&#38;#39;), 200);&#60;/code&#62;&#60;br /&#62;
--------------------------------&#60;/p&#62;
&#60;p&#62;You should now be able to see the views from both plugins.&#60;/p&#62;
&#60;p&#62;I'm no expert, but it seems like when My Views is adding my_views_init to the bb_views filter its overwriting whatever Support Forums has already added to the filter.  Just a guess.  I'm sure ck, so1o, mdawaffe, or SamBauers will know exactly what is going on.&#60;/p&#62;
&#60;p&#62;Enjoy!
&#60;/p&#62;</description>
</item>
<item>
<title>maker on "I think I need a fix ..."</title>
<link>http://bbpress.org/forums/topic/i-think-i-need-a-fix-#post-5770</link>
<pubDate>Fri, 23 Mar 2007 13:53:27 +0000</pubDate>
<dc:creator>maker</dc:creator>
<guid isPermaLink="false">5770@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Mirce, that just puts the sidebar out in firefox...it's a big difference/space between the 2 browsers.&#60;/p&#62;
&#60;p&#62;EDIT: adding display: inline seems to have done the job.
&#60;/p&#62;</description>
</item>
<item>
<title>sambauers on "I think I need a fix ..."</title>
<link>http://bbpress.org/forums/topic/i-think-i-need-a-fix-#post-5767</link>
<pubDate>Fri, 23 Mar 2007 11:58:46 +0000</pubDate>
<dc:creator>sambauers</dc:creator>
<guid isPermaLink="false">5767@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Some absolutely positioned and sized anchor tags over those buttons would do the trick for navigation.
&#60;/p&#62;</description>
</item>
<item>
<title>Mirce on "I think I need a fix ..."</title>
<link>http://bbpress.org/forums/topic/i-think-i-need-a-fix-#post-5763</link>
<pubDate>Fri, 23 Mar 2007 11:13:12 +0000</pubDate>
<dc:creator>Mirce</dc:creator>
<guid isPermaLink="false">5763@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;1. In IE the right column is waaay out of whack. How do I fix that&#60;/p&#62;
&#60;p&#62;- open style.css, it should be in your templates directory \bb-templates\kakumei&#60;br /&#62;
- edit style.css with notepad, search for #rightbar&#60;br /&#62;
- change the value of MARGIN-LEFT:  as it suites you best - 510px, 450px, 300px, just edit that number and see how it goes.&#60;/p&#62;
&#60;p&#62;#rightbar {&#60;br /&#62;
	OVERFLOW-X: hidden; MARGIN-LEFT: 310px; WIDTH: 150px; POSITION: absolute&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Good luck!
&#60;/p&#62;</description>
</item>
<item>
<title>maker on "I think I need a fix ..."</title>
<link>http://bbpress.org/forums/topic/i-think-i-need-a-fix-#post-5762</link>
<pubDate>Fri, 23 Mar 2007 10:44:42 +0000</pubDate>
<dc:creator>maker</dc:creator>
<guid isPermaLink="false">5762@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;My BBpress forum:&#60;br /&#62;
Basic theme with things mucked around a bit.&#60;br /&#62;
SamBaeurs categories patch&#60;br /&#62;
Hopefully by the time you read this the private forum plugin.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.mpm.org.au&#34; rel=&#34;nofollow&#34;&#62;http://www.mpm.org.au&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;issues so far:&#60;br /&#62;
1. In IE the right column is waaay out of whack. How do I fix that?&#60;br /&#62;
2. I have the header map appearing in the background of a div - I'd like to put an image map there for those black buttons. Is this possible or is there a better way to do this?&#60;br /&#62;
3. I'm a factory worker not a web designer.&#60;/p&#62;
&#60;p&#62;I gotta say, I REALLY like BBpress. Once BBportal is complete, my god, it'll be the answer to all my dreams!
&#60;/p&#62;</description>
</item>
<item>
<title>ChrisGross on "A bix complex, but try and follow me here."</title>
<link>http://bbpress.org/forums/topic/a-bix-complex-but-try-and-follow-me-here#post-3564</link>
<pubDate>Tue, 23 Jan 2007 18:30:35 +0000</pubDate>
<dc:creator>ChrisGross</dc:creator>
<guid isPermaLink="false">3564@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Cool, thanks
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "A bix complex, but try and follow me here."</title>
<link>http://bbpress.org/forums/topic/a-bix-complex-but-try-and-follow-me-here#post-3534</link>
<pubDate>Tue, 23 Jan 2007 07:46:22 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">3534@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The issue will be because the user that you have as an Administrator in WP is not the keymaster in bbPress.   What you can do is check out the following:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/462?replies=4#post-2607&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/462?replies=4#post-2607&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;There is some good information in there on getting the account that is the admin in Wordpress to also be the Keymaster (admin) in bbPress.&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>ChrisGross on "A bix complex, but try and follow me here."</title>
<link>http://bbpress.org/forums/topic/a-bix-complex-but-try-and-follow-me-here#post-3533</link>
<pubDate>Tue, 23 Jan 2007 07:38:54 +0000</pubDate>
<dc:creator>ChrisGross</dc:creator>
<guid isPermaLink="false">3533@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I have my wordpress and my bbpress installed and working together fine. The only problem is that I can reach my wordpress admin panel, but not the bbpress one. The deal I think is that there is some info missing from the wp_users table that makes it so bbpress can use it. Could anyone tell me how to fix this without having to re-install the entire thing.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
