<?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 Topic: Theming Issue!</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Topic: Theming Issue!</description>
<language>en</language>
<pubDate>Sat, 30 Aug 2008 14:05:23 +0000</pubDate>

<item>
<title>MikeyGYSE on "Theming Issue!"</title>
<link>http://bbpress.org/forums/topic/theming-issue#post-11863</link>
<pubDate>Fri, 09 Nov 2007 02:45:10 +0000</pubDate>
<dc:creator>MikeyGYSE</dc:creator>
<guid isPermaLink="false">11863@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;and also ensure that&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;#forumlist tr td div.nest {
	padding-left: 2.5ex;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;is added to Style.css
&#60;/p&#62;</description>
</item>
<item>
<title>MikeyGYSE on "Theming Issue!"</title>
<link>http://bbpress.org/forums/topic/theming-issue#post-11862</link>
<pubDate>Fri, 09 Nov 2007 02:05:38 +0000</pubDate>
<dc:creator>MikeyGYSE</dc:creator>
<guid isPermaLink="false">11862@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The solution is to rip out the code&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;h2&#38;gt;&#38;lt;?php _e(&#38;#39;Forums&#38;#39;); ?&#38;gt;&#38;lt;/h2&#38;gt;
&#38;lt;table id=&#38;quot;forumlist&#38;quot;&#38;gt;

&#38;lt;tr&#38;gt;
	&#38;lt;th&#38;gt;&#38;lt;?php _e(&#38;#39;Main Theme&#38;#39;); ?&#38;gt;&#38;lt;/th&#38;gt;
	&#38;lt;th&#38;gt;&#38;lt;?php _e(&#38;#39;Topics&#38;#39;); ?&#38;gt;&#38;lt;/th&#38;gt;
	&#38;lt;th&#38;gt;&#38;lt;?php _e(&#38;#39;Posts&#38;#39;); ?&#38;gt;&#38;lt;/th&#38;gt;
&#38;lt;/tr&#38;gt;

&#38;lt;?php foreach ( $forums as $forum ) : ?&#38;gt;
&#38;lt;tr&#38;lt;?php alt_class(&#38;#39;forum&#38;#39;); ?&#38;gt;&#38;gt;
	&#38;lt;td&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php forum_link(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php forum_name(); ?&#38;gt;&#38;lt;/a&#38;gt; &#38;#8212; &#38;lt;small&#38;gt;&#38;lt;?php forum_description(); ?&#38;gt;&#38;lt;/small&#38;gt;&#38;lt;/td&#38;gt;
	&#38;lt;td class=&#38;quot;num&#38;quot;&#38;gt;&#38;lt;?php forum_topics(); ?&#38;gt;&#38;lt;/td&#38;gt;
	&#38;lt;td class=&#38;quot;num&#38;quot;&#38;gt;&#38;lt;?php forum_posts(); ?&#38;gt;&#38;lt;/td&#38;gt;
&#38;lt;/tr&#38;gt;
&#38;lt;?php endforeach; ?&#38;gt;
&#38;lt;/table&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;from Superbold-bbpress/front-page.php&#60;/p&#62;
&#60;p&#62;and replace it with &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php if ( bb_forums() ) : ?&#38;gt;
&#38;lt;h2&#38;gt;&#38;lt;?php _e(&#38;#39;Forums&#38;#39;); ?&#38;gt;&#38;lt;/h2&#38;gt;
&#38;lt;table id=&#38;quot;forumlist&#38;quot;&#38;gt;

&#38;lt;tr&#38;gt;
	&#38;lt;th&#38;gt;&#38;lt;?php _e(&#38;#39;Main Theme&#38;#39;); ?&#38;gt;&#38;lt;/th&#38;gt;
	&#38;lt;th&#38;gt;&#38;lt;?php _e(&#38;#39;Topics&#38;#39;); ?&#38;gt;&#38;lt;/th&#38;gt;
	&#38;lt;th&#38;gt;&#38;lt;?php _e(&#38;#39;Posts&#38;#39;); ?&#38;gt;&#38;lt;/th&#38;gt;
&#38;lt;/tr&#38;gt;
&#38;lt;?php while ( bb_forum() ) : ?&#38;gt;
&#38;lt;tr&#38;lt;?php bb_forum_class(); ?&#38;gt;&#38;gt;
	&#38;lt;td&#38;gt;&#38;lt;?php bb_forum_pad( &#38;#39;&#38;lt;div class=&#38;quot;nest&#38;quot;&#38;gt;&#38;#39; ); ?&#38;gt;&#38;lt;a href=&#38;quot;&#38;lt;?php forum_link(); ?&#38;gt;&#38;quot;&#38;gt;&#38;lt;?php forum_name(); ?&#38;gt;&#38;lt;/a&#38;gt;&#38;lt;small&#38;gt;&#38;lt;?php forum_description(); ?&#38;gt;&#38;lt;/small&#38;gt;&#38;lt;?php bb_forum_pad( &#38;#39;&#38;lt;/div&#38;gt;&#38;#39; ); ?&#38;gt;&#38;lt;/td&#38;gt;
	&#38;lt;td class=&#38;quot;num&#38;quot;&#38;gt;&#38;lt;?php forum_topics(); ?&#38;gt;&#38;lt;/td&#38;gt;
	&#38;lt;td class=&#38;quot;num&#38;quot;&#38;gt;&#38;lt;?php forum_posts(); ?&#38;gt;&#38;lt;/td&#38;gt;
&#38;lt;/tr&#38;gt;
&#38;lt;?php endwhile; ?&#38;gt;
&#38;lt;/table&#38;gt;
&#38;lt;?php endif; // bb_forums() ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;from Kakumei/front-page.php
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Theming Issue!"</title>
<link>http://bbpress.org/forums/topic/theming-issue#post-11835</link>
<pubDate>Wed, 07 Nov 2007 00:58:14 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">11835@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Can you be more specific? In case someone else is looking for a solution to the same thing?
&#60;/p&#62;</description>
</item>
<item>
<title>MikeyGYSE on "Theming Issue!"</title>
<link>http://bbpress.org/forums/topic/theming-issue#post-11834</link>
<pubDate>Wed, 07 Nov 2007 00:49:40 +0000</pubDate>
<dc:creator>MikeyGYSE</dc:creator>
<guid isPermaLink="false">11834@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Fixed it, it's an issue with incorrect/missing code in the SuperBold Front-Page.php file
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Theming Issue!"</title>
<link>http://bbpress.org/forums/topic/theming-issue#post-11829</link>
<pubDate>Tue, 06 Nov 2007 17:38:38 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">11829@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Does it sound like this:&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/topic/forum-structure-1?replies=12&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/forum-structure-1?replies=12&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://trac.bbpress.org/ticket/740&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/ticket/740&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://trac.bbpress.org/ticket/741&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/ticket/741&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Looks like that was fixed in r930:&#60;br /&#62;
&#60;a href=&#34;http://trac.bbpress.org/changeset/930&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/changeset/930&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Theming Issue!"</title>
<link>http://bbpress.org/forums/topic/theming-issue#post-11828</link>
<pubDate>Tue, 06 Nov 2007 17:20:03 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">11828@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Can you provide some links and/or code please?
&#60;/p&#62;</description>
</item>
<item>
<title>MikeyGYSE on "Theming Issue!"</title>
<link>http://bbpress.org/forums/topic/theming-issue#post-11826</link>
<pubDate>Tue, 06 Nov 2007 13:22:40 +0000</pubDate>
<dc:creator>MikeyGYSE</dc:creator>
<guid isPermaLink="false">11826@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm using the latest version of bbpress, the 'SuperBold' theme and I have a problem! The forums all appear on the same line... no indentation separates the 'containers' from the forums. From what I can see with FireBug there is NO difference between the containers and forums no difference in terms of CSS at any rate. However with the Kakumei theme it works.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
