<?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: Style</title>
<link>http://bbpress.org/forums/</link>
<description>bbPress support forums Tag: Style</description>
<language>en</language>
<pubDate>Tue, 02 Dec 2008 05:37:08 +0000</pubDate>

<item>
<title>outchy on "Style first post only?"</title>
<link>http://bbpress.org/forums/topic/style-first-post-only#post-12816</link>
<pubDate>Thu, 20 Dec 2007 22:18:27 +0000</pubDate>
<dc:creator>outchy</dc:creator>
<guid isPermaLink="false">12816@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I went with the first-child option and after a lot of tinkering, I finally got it working.  To hell with IE6!  Thanks so much for your help, fel64
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Style first post only?"</title>
<link>http://bbpress.org/forums/topic/style-first-post-only#post-12809</link>
<pubDate>Thu, 20 Dec 2007 19:38:48 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">12809@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;You could apply the style you want for only the first li to every li, then use the + selector to modify it for all li following another li (in effect letting you style only the first one, although it's annoying that you may have to cancel styles).&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;li {
font-weight: bold; }
li + li {
font-weight: normal; }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;should make just the first li bold. This I think works on every browser, even IE6.&#60;/p&#62;
&#60;p&#62;The &#60;a href=&#34;http://developer.mozilla.org/en/docs/CSS::first-child&#34; rel=&#34;nofollow&#34;&#62;http://developer.mozilla.org/en/docs/CSS::first-child&#60;/a&#62; rule is of course the proper thing to do, but (if I recall correctly) doesn't work for IE6. (This is what I would do ... but I generally have no mercy for IE6 users anyway.)
&#60;/p&#62;</description>
</item>
<item>
<title>outchy on "Style first post only?"</title>
<link>http://bbpress.org/forums/topic/style-first-post-only#post-12795</link>
<pubDate>Thu, 20 Dec 2007 00:57:08 +0000</pubDate>
<dc:creator>outchy</dc:creator>
<guid isPermaLink="false">12795@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Is there a way to style the text of only the first post for each topic?  I know how to style every alternating post but I can't figure out how to style just the first entry...
&#60;/p&#62;</description>
</item>
<item>
<title>anasohbet on "font size and color plugin"</title>
<link>http://bbpress.org/forums/topic/font-size-and-color-plugin#post-12624</link>
<pubDate>Sat, 15 Dec 2007 12:23:11 +0000</pubDate>
<dc:creator>anasohbet</dc:creator>
<guid isPermaLink="false">12624@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thnks, itissue.
&#60;/p&#62;</description>
</item>
<item>
<title>itissue on "font size and color plugin"</title>
<link>http://bbpress.org/forums/topic/font-size-and-color-plugin#post-12618</link>
<pubDate>Sat, 15 Dec 2007 10:16:03 +0000</pubDate>
<dc:creator>itissue</dc:creator>
<guid isPermaLink="false">12618@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Nevermind. I created a plugin that I can modify anytime I want. Here's the code if you're interested. You don't even need the add image plugin.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php
/*
Plugin name: Extra html tags
plugin author: Sue
plugin description: Allow extra html tags, even depreciated
*/

function allow_extra_tags( $tags )
{
    $tags[&#38;#39;a&#38;#39;] = array(
        &#38;#39;href&#38;#39; =&#38;gt; array(),
        &#38;#39;title&#38;#39; =&#38;gt; array(),
        &#38;#39;rel&#38;#39; =&#38;gt; array(),
        &#38;#39;target&#38;#39; =&#38;gt; array(),
        &#38;#39;alt&#38;#39; =&#38;gt; array()
    );
    $tags[&#38;#39;i&#38;#39;] = array();
    $tags[&#38;#39;b&#38;#39;] = array();
    $tags[&#38;#39;del&#38;#39;] = array();
    $tags[&#38;#39;p&#38;#39;] = array(
	&#38;#39;style&#38;#39;=&#38;gt; array()
    );
    $tags[&#38;#39;strike&#38;#39;] = array();
    $tags[&#38;#39;img&#38;#39;] = array(
        &#38;#39;src&#38;#39;=&#38;gt; array(),
        &#38;#39;alt&#38;#39; =&#38;gt; array(),
        &#38;#39;title&#38;#39; =&#38;gt; array(),
        &#38;#39;width&#38;#39; =&#38;gt; array(),
        &#38;#39;height&#38;#39; =&#38;gt; array(),
        &#38;#39;style&#38;#39; =&#38;gt; array()
    );
    $tags[&#38;#39;font&#38;#39;] = array(
        &#38;#39;style&#38;#39; =&#38;gt; array(),
    );
    $tags[&#38;#39;br&#38;#39;] = array();
    $tags[&#38;#39;h1&#38;#39;] = array();
    $tags[&#38;#39;h2&#38;#39;] = array();
    $tags[&#38;#39;h3&#38;#39;] = array();
    $tags[&#38;#39;h4&#38;#39;] = array();

    return $tags;
}
add_filter( &#38;#39;bb_allowed_tags&#38;#39;, &#38;#39;allow_extra_tags&#38;#39; );
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>itissue on "font size and color plugin"</title>
<link>http://bbpress.org/forums/topic/font-size-and-color-plugin#post-12617</link>
<pubDate>Sat, 15 Dec 2007 09:49:19 +0000</pubDate>
<dc:creator>itissue</dc:creator>
<guid isPermaLink="false">12617@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I was wondering if there's a plugin already out there for font size and font color. They should enable the font tag or style=&#34;&#34;; in the tags. Also, why can't we use heading tags such as &#60;code&#62;&#38;lt;h1&#38;gt;&#60;/code&#62; or choose an image width and height in our image tags?
&#60;/p&#62;</description>
</item>
<item>
<title>WPITn2shape on "login-form.php template doesn't work"</title>
<link>http://bbpress.org/forums/topic/login-formphp-template-doesnt-work#post-10703</link>
<pubDate>Sun, 02 Sep 2007 14:42:36 +0000</pubDate>
<dc:creator>WPITn2shape</dc:creator>
<guid isPermaLink="false">10703@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It works now to style login.php in my template folder, NOT login-form.php, but I swear it didn't work before. I had put the same code in both of those template files. Weird.
&#60;/p&#62;</description>
</item>
<item>
<title>WPITn2shape on "login-form.php template doesn't work"</title>
<link>http://bbpress.org/forums/topic/login-formphp-template-doesnt-work#post-10702</link>
<pubDate>Sun, 02 Sep 2007 14:20:50 +0000</pubDate>
<dc:creator>WPITn2shape</dc:creator>
<guid isPermaLink="false">10702@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If when I put my WP log in form into bb-login.php and when that redirects to wp-login.php but shows a 404 (when the file is there), should I go to WordPress MU forums to ask for help?&#60;/p&#62;
&#60;p&#62;&#38;gt;&#38;gt;&#38;gt;&#38;gt;&#60;br /&#62;
OK It also happens when I put bb-login.php into the code instead of wp-login.php, but I'm sure it's still a WP/MU thing.&#60;/p&#62;
&#60;p&#62;Putting my WP login box on the sidebar of the main page of the forum works however, so what I really need is to be able to change the log in message at the bottom of those pages.
&#60;/p&#62;</description>
</item>
<item>
<title>WPITn2shape on "login-form.php template doesn't work"</title>
<link>http://bbpress.org/forums/topic/login-formphp-template-doesnt-work#post-10701</link>
<pubDate>Sun, 02 Sep 2007 14:17:45 +0000</pubDate>
<dc:creator>WPITn2shape</dc:creator>
<guid isPermaLink="false">10701@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I can't change the login styling by editing the template file, I have to change the bb-login.php.&#60;/p&#62;
&#60;p&#62;I wanted to NEVER allow going to bb-login.php but instead have a login box where it now has a log in link.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "login-form.php template doesn't work"</title>
<link>http://bbpress.org/forums/topic/login-formphp-template-doesnt-work#post-10698</link>
<pubDate>Sun, 02 Sep 2007 12:59:46 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">10698@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;&#38;gt; styling the login doesn't work&#60;br /&#62;
Can you be more precise? What do you want to do, what have you tried, how precisely has it failed?&#60;/p&#62;
&#60;p&#62;Do you mean the &#34;You must log in to post.&#34;? That should be translatable, but otherwise as far as I know it's stuck in core files.
&#60;/p&#62;</description>
</item>
<item>
<title>WPITn2shape on "login-form.php template doesn't work"</title>
<link>http://bbpress.org/forums/topic/login-formphp-template-doesnt-work#post-10694</link>
<pubDate>Sun, 02 Sep 2007 11:44:00 +0000</pubDate>
<dc:creator>WPITn2shape</dc:creator>
<guid isPermaLink="false">10694@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Perhaps it's that I'm using ThemePress, but styling the login doesn't work. I suppose I'll have to actually edit the file, but it's a file that shouldn't cause upload trouble. I don't want to have to do that much though.&#60;/p&#62;
&#60;p&#62;Also, how do I change the register/login link at the bottom of a post if one's not logged in to a little form itself? I can't find this in my theme, and I'd like to change that.&#60;/p&#62;
&#60;p&#62;It's important to keep things on the WP side since I'm using MU.&#60;/p&#62;
&#60;p&#62;I didn't find another post on this by the way. And thanks for any help!
&#60;/p&#62;</description>
</item>
<item>
<title>benbeltran on "My Forums: Temporada De Patos"</title>
<link>http://bbpress.org/forums/topic/my-forums-temporada-de-patos#post-6958</link>
<pubDate>Mon, 23 Apr 2007 17:12:26 +0000</pubDate>
<dc:creator>benbeltran</dc:creator>
<guid isPermaLink="false">6958@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;yeah :O it should ... li uses display:list-item and uses different properties ... like line-height instead of height and it behaves differently in some contexts.&#60;/p&#62;
&#60;p&#62;In some cases using the default display mode it would overlap with other items, but with display:block; it stretches properly
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "My Forums: Temporada De Patos"</title>
<link>http://bbpress.org/forums/topic/my-forums-temporada-de-patos#post-6949</link>
<pubDate>Mon, 23 Apr 2007 13:58:26 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">6949@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ahh thanks, I was looking in the wrong place. &#60;/p&#62;
&#60;p&#62;Does the display: block property make a difference? Using Firebug to disable it I can't see a change.
&#60;/p&#62;</description>
</item>
<item>
<title>Null on "My Forums: Temporada De Patos"</title>
<link>http://bbpress.org/forums/topic/my-forums-temporada-de-patos#post-6945</link>
<pubDate>Mon, 23 Apr 2007 08:55:54 +0000</pubDate>
<dc:creator>Null</dc:creator>
<guid isPermaLink="false">6945@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;english plz?
&#60;/p&#62;</description>
</item>
<item>
<title>detrom on "My Forums: Temporada De Patos"</title>
<link>http://bbpress.org/forums/topic/my-forums-temporada-de-patos#post-6942</link>
<pubDate>Mon, 23 Apr 2007 08:38:42 +0000</pubDate>
<dc:creator>detrom</dc:creator>
<guid isPermaLink="false">6942@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hola benbeltran, el foro que tengo es nuevo y lo veo un poco soso, me gustaria tenerlo tal como lo tienes tu ahora mismo. Me podrias echar una mano modificando el mio?&#60;br /&#62;
te paso mi direccion de gmail:   detrom[en]gmail.com
&#60;/p&#62;</description>
</item>
<item>
<title>benbeltran on "My Forums: Temporada De Patos"</title>
<link>http://bbpress.org/forums/topic/my-forums-temporada-de-patos#post-6936</link>
<pubDate>Mon, 23 Apr 2007 05:31:08 +0000</pubDate>
<dc:creator>benbeltran</dc:creator>
<guid isPermaLink="false">6936@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;@detrom: Claro, en que necesitas ayuda?&#60;/p&#62;
&#60;p&#62;@fel64: &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;#thread li {
	padding: 1.5em 1.0em;
	display: block;
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;:) that's about it...
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "My Forums: Temporada De Patos"</title>
<link>http://bbpress.org/forums/topic/my-forums-temporada-de-patos#post-6916</link>
<pubDate>Sun, 22 Apr 2007 20:59:52 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">6916@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm quite interested in how you did it, but I don't see &#60;code&#62;display:block&#60;/code&#62; property on your &#60;code&#62;.threadpost&#60;/code&#62; anymore? :/&#60;/p&#62;
&#60;p&#62;Yeah I think that's the same thing, I was making it too complicated. :)
&#60;/p&#62;</description>
</item>
<item>
<title>detrom on "My Forums: Temporada De Patos"</title>
<link>http://bbpress.org/forums/topic/my-forums-temporada-de-patos#post-6914</link>
<pubDate>Sun, 22 Apr 2007 19:49:54 +0000</pubDate>
<dc:creator>detrom</dc:creator>
<guid isPermaLink="false">6914@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Oye me podrias echar una mano para poner mi foro mas o menos como el tuyo?&#60;br /&#62;
Gracias&#60;br /&#62;
&#60;a href=&#34;http://foro.bolsageneral.com/&#34; rel=&#34;nofollow&#34;&#62;http://foro.bolsageneral.com/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>benbeltran on "My Forums: Temporada De Patos"</title>
<link>http://bbpress.org/forums/topic/my-forums-temporada-de-patos#post-6911</link>
<pubDate>Sun, 22 Apr 2007 17:20:42 +0000</pubDate>
<dc:creator>benbeltran</dc:creator>
<guid isPermaLink="false">6911@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;yeah, it was a workaround before ... i don't think it matters much anymore since i changed .threadpost to display:block so it stretches all the way instead of depending on line-height.&#60;/p&#62;
&#60;p&#62;:)&#60;/p&#62;
&#60;p&#62;and about the badges plug-in ... i'm not sure what you mean (sorry, i'm very new to bbpress so i still don't know my way around that much). I changed the profile/admin keys on functions.php :(
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "My Forums: Temporada De Patos"</title>
<link>http://bbpress.org/forums/topic/my-forums-temporada-de-patos#post-6904</link>
<pubDate>Sun, 22 Apr 2007 10:04:39 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">6904@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;It looks very nice :) Does the badge plugin work via the usermeta table?&#60;/p&#62;
&#60;p&#62;I see you also took the approach of &#60;code&#62;min-height&#60;/code&#62; to make your posts large enough for the avatar and userdetails on the side. I do that too, but it bothers me slightly; I'd rather have something properly fluid - can't figure out a way of doing it without tables or tag soup though. :(&#60;/p&#62;
&#60;p&#62;By the way, if you put the &#60;code&#62;min-height&#60;/code&#62; property on &#60;code&#62;.threadpost&#60;/code&#62; rather than on &#60;code&#62;.post&#60;/code&#62; it will also take the signature into account, which might make quite a difference.
&#60;/p&#62;</description>
</item>
<item>
<title>benbeltran on "My Forums: Temporada De Patos"</title>
<link>http://bbpress.org/forums/topic/my-forums-temporada-de-patos#post-6903</link>
<pubDate>Sun, 22 Apr 2007 09:05:20 +0000</pubDate>
<dc:creator>benbeltran</dc:creator>
<guid isPermaLink="false">6903@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;These forums use the Spanish Translation and some extra language tweaks i added on my own ... &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://temporadadepatos.net/foros&#34;&#62; Forums for Temporada de Patos &#60;/a&#62;&#60;/p&#62;
&#60;p&#62;the plugins i use are:&#60;/p&#62;
&#60;p&#62;Allow Images&#60;br /&#62;
Avatar Upload&#60;br /&#62;
BB-Emoticons&#60;br /&#62;
BB-Ratings&#60;br /&#62;
BB-Signature&#60;br /&#62;
Front Page Topics&#60;br /&#62;
Indicate New Posts&#60;br /&#62;
Page Links for bbPress&#60;br /&#62;
Post Count&#60;br /&#62;
Private Message&#60;br /&#62;
Quicktags 4 bbPress&#60;br /&#62;
Quote&#60;br /&#62;
Simple Online List&#60;br /&#62;
And a Custom BB-Badge Plug-in i made :)&#60;/p&#62;
&#60;p&#62;The skin is an edit of the original bbpress theme, i made it to fit the main site (a Wordpress blog).  The icons are from the Tango Project.&#60;/p&#62;
&#60;p&#62;The most noticeable changes in the layout are on the forum displays (front page and the one for each forum) and the profile.&#60;/p&#62;
&#60;p&#62;:)
&#60;/p&#62;</description>
</item>
<item>
<title>Ghoulash on "Bad slash prevents style sheet"</title>
<link>http://bbpress.org/forums/topic/bad-slash-prevents-style-sheet#post-5559</link>
<pubDate>Thu, 15 Mar 2007 14:14:14 +0000</pubDate>
<dc:creator>Ghoulash</dc:creator>
<guid isPermaLink="false">5559@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;ISSUE NOW RESOLVED. I have reinstalled bbPress, this time using only a pure text editor (TextWrangler) and a different FTP client. Before I was using Dreamweaver as my interface, and you would think, after years of web work and experience with DW's thug-like behavior with relative paths, that I would have known better.&#60;/p&#62;
&#60;p&#62;By the way, upon reinstalling without using DW, I did not have the initial reverse-slash issue. In other words, I am not having to use the path-to-url plugin, with or without its subsequent tweak.&#60;/p&#62;
&#60;p&#62;By the way 2: I know this would be a &#34;duh&#34; comment for many, but just in case it helps someone avoid the problems I had: When running  bb-admin/install.php, in the field where it calls for your web site, do not enter a trailing slash. I tend to add one out of habit, and I think that was the cause of some of my earlier problems.
&#60;/p&#62;</description>
</item>
<item>
<title>Ghoulash on "Bad slash prevents style sheet"</title>
<link>http://bbpress.org/forums/topic/bad-slash-prevents-style-sheet#post-5554</link>
<pubDate>Thu, 15 Mar 2007 13:53:39 +0000</pubDate>
<dc:creator>Ghoulash</dc:creator>
<guid isPermaLink="false">5554@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;While the issue technically is resolved, I think the fix creates other issues with slashes and paths. For instance, the main stylesheet displays correctly, but when I access my admin panel and then attempt to drill down into subcategories (Users, Content, Presentation, etc.), I get errors or weird redirects (gentoo.org?).
&#60;/p&#62;</description>
</item>
<item>
<title>Ghoulash on "Bad slash prevents style sheet"</title>
<link>http://bbpress.org/forums/topic/bad-slash-prevents-style-sheet#post-5552</link>
<pubDate>Thu, 15 Mar 2007 13:44:40 +0000</pubDate>
<dc:creator>Ghoulash</dc:creator>
<guid isPermaLink="false">5552@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;nanome, I had just read that post and used your tweaked code to solve the problem. Thanks so much.
&#60;/p&#62;</description>
</item>
<item>
<title>nanome on "Bad slash prevents style sheet"</title>
<link>http://bbpress.org/forums/topic/bad-slash-prevents-style-sheet#post-5550</link>
<pubDate>Thu, 15 Mar 2007 13:38:38 +0000</pubDate>
<dc:creator>nanome</dc:creator>
<guid isPermaLink="false">5550@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Ghoulash and Spencerp&#60;/p&#62;
&#60;p&#62;Have a look at my post at the bottom of the thread. &#60;/p&#62;
&#60;p&#62;Same problem and not solved by the plug-in. A few tweaks and now works great.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/700/page/2?replies=48&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/700/page/2?replies=48&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>spencerp on "Bad slash prevents style sheet"</title>
<link>http://bbpress.org/forums/topic/bad-slash-prevents-style-sheet#post-5544</link>
<pubDate>Thu, 15 Mar 2007 02:30:41 +0000</pubDate>
<dc:creator>spencerp</dc:creator>
<guid isPermaLink="false">5544@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Just the same as I. Trent, I posted this yesterday or whatever..&#60;br /&#62;
&#60;a href=&#34;http://bbpress.org/forums/topic/700/page/2?replies=47#post-5463&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/700/page/2?replies=47#post-5463&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;spencerp
&#60;/p&#62;</description>
</item>
<item>
<title>Ghoulash on "Bad slash prevents style sheet"</title>
<link>http://bbpress.org/forums/topic/bad-slash-prevents-style-sheet#post-5540</link>
<pubDate>Thu, 15 Mar 2007 00:57:53 +0000</pubDate>
<dc:creator>Ghoulash</dc:creator>
<guid isPermaLink="false">5540@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The path-to-url.php plug-in did not seem to work. Yes, I do have it installed on a localhost, and I can see where that might be a problem.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "Bad slash prevents style sheet"</title>
<link>http://bbpress.org/forums/topic/bad-slash-prevents-style-sheet#post-5534</link>
<pubDate>Wed, 14 Mar 2007 22:43:20 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">5534@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;This thread will help out I think:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://bbpress.org/forums/topic/700/page/2?replies=47#post-4898&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/700/page/2?replies=47#post-4898&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;If not, let me know as then I am assuming you have this installed on a localhost ?&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>User1 on "Bad slash prevents style sheet"</title>
<link>http://bbpress.org/forums/topic/bad-slash-prevents-style-sheet#post-5533</link>
<pubDate>Wed, 14 Mar 2007 22:17:19 +0000</pubDate>
<dc:creator>User1</dc:creator>
<guid isPermaLink="false">5533@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;??
&#60;/p&#62;</description>
</item>
<item>
<title>User1 on "Bad slash prevents style sheet"</title>
<link>http://bbpress.org/forums/topic/bad-slash-prevents-style-sheet#post-5532</link>
<pubDate>Wed, 14 Mar 2007 22:06:04 +0000</pubDate>
<dc:creator>User1</dc:creator>
<guid isPermaLink="false">5532@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;bb-includes/template-functions.php  open it up&#60;/p&#62;
&#60;p&#62;find bb_get_stylesheet_uri&#60;/p&#62;
&#60;p&#62;see if you have a backslash there.&#60;br /&#62;
$r = bb_get_option( 'uri' ) . &#34;bb-templates/kakumei/$css_file&#34;;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
