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

<item>
<title>mikeh269 on "Made a slight mess of my forum posts."</title>
<link>http://bbpress.org/forums/topic/made-a-slight-mess-of-my-forum-posts#post-7883</link>
<pubDate>Tue, 05 Jun 2007 09:07:52 +0000</pubDate>
<dc:creator>mikeh269</dc:creator>
<guid isPermaLink="false">7883@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Aha!&#60;/p&#62;
&#60;p&#62;A little bit of fiddling and I have a topic page that I like the look of.&#60;/p&#62;
&#60;p&#62;It renders fine in FF and IE6, but not in IE7. Why, I'm not sure, but I'm happy enough with it.&#60;/p&#62;
&#60;p&#62;FireBug is really incredibly useful. I used it as you suggested and it does indeed make things a little faster.&#60;/p&#62;
&#60;p&#62;It would be nice if you could export the style.css after you've finished modifying it in their nice user interface, but that's minor.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Made a slight mess of my forum posts."</title>
<link>http://bbpress.org/forums/topic/made-a-slight-mess-of-my-forum-posts#post-7876</link>
<pubDate>Mon, 04 Jun 2007 23:00:28 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">7876@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Relevant also is &#60;code&#62;#thread li&#60;/code&#62;.&#60;/p&#62;
&#60;p&#62;Note that &#60;code&#62;threadauthor&#60;/code&#62; has &#60;code&#62;position: absolute;&#60;/code&#62; so it won't affect the height of the post. As soon as you get rid of that it, the post is pushed to full height.&#60;/p&#62;
&#60;p&#62;Alternatively, you could give &#60;code&#62;#thread li&#60;/code&#62; the &#60;code&#62;min-height: 200px&#60;/code&#62; property, which will make sure it's at least 200 pixels high which should be sufficient to accomodate for avatar and username. However IE6 does not support the min-height property.&#60;/p&#62;
&#60;p&#62;&#60;code&#62;margin&#60;/code&#62;s will push things apart, which might be what you're looking for. Also &#60;code&#62;.post&#60;/code&#62; needs to have a bigger margin.&#60;/p&#62;
&#60;p&#62;Both approaches will give you a workable design. However when you're working on these things there are really two things you should do:&#60;/p&#62;
&#60;ol&#62;
&#60;li&#62;Change &#60;strong&#62;one&#60;/strong&#62; thing at a time. Check result.&#60;/li&#62;
&#60;li&#62;Use &#60;a href=&#34;https://addons.mozilla.org/en-US/firefox/addon/1843&#34;&#62;Firebug&#60;/a&#62;.&#60;/li&#62;
&#60;/ol&#62;
&#60;p&#62;Both of those are lifesavers and greatly reduce the amount of work and panic you'll have. Switch to FF if you have to, Firebug is pure gold and absolutely worth it when you're making websites.
&#60;/p&#62;</description>
</item>
<item>
<title>mikeh269 on "Made a slight mess of my forum posts."</title>
<link>http://bbpress.org/forums/topic/made-a-slight-mess-of-my-forum-posts#post-7874</link>
<pubDate>Mon, 04 Jun 2007 20:47:06 +0000</pubDate>
<dc:creator>mikeh269</dc:creator>
<guid isPermaLink="false">7874@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I'm just fiddling around with the Crystal theme and trying to get it to match my installation of Unsleepable on wordpress.&#60;/p&#62;
&#60;p&#62;I also decided to put in avatars.&#60;/p&#62;
&#60;p&#62;I've made a bit of a mess of it.&#60;/p&#62;
&#60;p&#62;&#60;a&#62;http://www.mikeh269.com/forum/topic.php?id=1&#38;#38;page&#38;#38;replies=3&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;As you can see, all the posts are somewhat pushed up so they are all together. I would appreciate it if I could get some help.&#60;/p&#62;
&#60;p&#62;Here's my post.php&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;threadauthor&#38;quot;&#38;gt;
			&#38;lt;p&#38;gt;&#38;lt;strong&#38;gt;&#38;lt;?php post_author_link(); ?&#38;gt;&#38;lt;/strong&#38;gt;&#38;lt;br /&#38;gt;
			  &#38;lt;small&#38;gt;&#38;lt;?php post_author_title(); ?&#38;gt;&#38;lt;br /&#38;gt;&#38;lt;?php post_avatar(); ?&#38;gt;&#38;lt;/small&#38;gt;&#38;lt;/p&#38;gt;
		&#38;lt;/div&#38;gt;

		&#38;lt;div class=&#38;quot;threadpost&#38;quot;&#38;gt;
			&#38;lt;div class=&#38;quot;post&#38;quot;&#38;gt;&#38;lt;?php post_text(); ?&#38;gt;&#38;lt;/div&#38;gt;
			&#38;lt;div class=&#38;quot;poststuff&#38;quot;&#38;gt;&#38;lt;?php printf( __(&#38;#39;Posted %s ago&#38;#39;), bb_get_post_time() ); ?&#38;gt; &#38;lt;a href=&#38;quot;&#38;lt;?php post_anchor_link(); ?&#38;gt;&#38;quot;&#38;gt;#&#38;lt;/a&#38;gt; &#38;lt;?php post_ip_link(); ?&#38;gt; &#38;lt;?php post_edit_link(); ?&#38;gt; &#38;lt;?php post_delete_link(); ?&#38;gt;&#38;lt;/div&#38;gt;
		&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;And the relevant parts of style.css&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.poststuff{
	font:10px Verdana,Arial,Helvetica,sans-serif;
	text-transform:uppercase
	}

.threadauthor small{font:11px Verdana,Arial,Helvetica,sans-serif}

.post {
	margin-left: 100px;
	position: absolute;
	padding-left; 100px;
	padding-up; 50px;

}

.threadauthor {
	margin-left: 10px;
	overflow: hidden;
	position: absolute;
	max-height: 215px;
	width: 150px;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Any help would be appreciated.
&#60;/p&#62;</description>
</item>
<item>
<title>willspill on "stylesheet problem (known problem see post)"</title>
<link>http://bbpress.org/forums/topic/stylesheet-problem-known-problem-see-post#post-7870</link>
<pubDate>Mon, 04 Jun 2007 19:17:07 +0000</pubDate>
<dc:creator>willspill</dc:creator>
<guid isPermaLink="false">7870@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;did some more searching and found this post about localhost installs.&#60;br /&#62;
seems to be a known problem &#60;a href=&#34;http://bbpress.org/forums/topic/988?replies=6&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.org/forums/topic/988?replies=6&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>willspill on "stylesheet problem (known problem see post)"</title>
<link>http://bbpress.org/forums/topic/stylesheet-problem-known-problem-see-post#post-7868</link>
<pubDate>Mon, 04 Jun 2007 18:28:58 +0000</pubDate>
<dc:creator>willspill</dc:creator>
<guid isPermaLink="false">7868@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;My bbpress is having trouble displaying stylesheets correctly. I am using the default style that bbpress comes with. I have it installed locally on a test environment.&#60;br /&#62;
The admin section looks exactly how it should, but the forum itself does not. I have noticed that the path to the stylesheet is incorrect. &#60;/p&#62;
&#60;p&#62;&#38;lt;link rel=&#34;stylesheet&#34; href=&#34;http://localhost\bbpress/bb-templates/kakumei/style.css&#34; type=&#34;text/css&#34; /&#38;gt;&#60;/p&#62;
&#60;p&#62;notice how after localhost the &#34;\&#34; is the wrong way.&#60;br /&#62;
Not sure if anyone can tell me how to fix it.&#60;/p&#62;
&#60;p&#62;-------------------------------------------------&#60;/p&#62;
&#60;p&#62;in the admin page, the stylesheet path is correct&#60;br /&#62;
&#38;lt;link rel=&#34;stylesheet&#34; href=&#34;http://localhost/bbpress/bb-admin/style.css&#34; type=&#34;text/css&#34; /&#38;gt;&#60;/p&#62;
&#60;p&#62;---------------------------------------------&#60;br /&#62;
my config.php looks like this&#60;/p&#62;
&#60;p&#62;// If your bbPress URL is &#60;a href=&#34;http://bbpress.example.com/forums/&#34; rel=&#34;nofollow&#34;&#62;http://bbpress.example.com/forums/&#60;/a&#62; , the examples would be correct.&#60;br /&#62;
// Adjust the domain and path to suit your actual URL.&#60;br /&#62;
// Just the domain name; no directories or path. There should be no trailing slash here.&#60;br /&#62;
	$bb-&#38;gt;domain = 'http://localhost'; // Example: 'http://bbpress.example.com'&#60;br /&#62;
// There should be both a leading and trailing slash here. '/' is fine if the site is in root.&#60;br /&#62;
	$bb-&#38;gt;path   = '/bbpress/';	 // Example: '/forums/'
&#60;/p&#62;</description>
</item>
<item>
<title>bbx on "No Stylesheet"</title>
<link>http://bbpress.org/forums/topic/no-stylesheet#post-7675</link>
<pubDate>Sun, 27 May 2007 11:47:32 +0000</pubDate>
<dc:creator>bbx</dc:creator>
<guid isPermaLink="false">7675@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Actually I made a mistake, it's not the good path.&#60;/p&#62;
&#60;p&#62;Anyway, it's only a local problem. So I just replace the php function with the exact local URL (http://localhost/.../style.css) in the header.php file.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "No Stylesheet"</title>
<link>http://bbpress.org/forums/topic/no-stylesheet#post-7669</link>
<pubDate>Sun, 27 May 2007 01:09:56 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">7669@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If the stylesheet path is correct, you do not have the same problem. It should not contain \ at all.&#60;/p&#62;
&#60;p&#62;The code should maybe go in /my-plugins/.
&#60;/p&#62;</description>
</item>
<item>
<title>bbx on "No Stylesheet"</title>
<link>http://bbpress.org/forums/topic/no-stylesheet#post-7663</link>
<pubDate>Sat, 26 May 2007 22:45:29 +0000</pubDate>
<dc:creator>bbx</dc:creator>
<guid isPermaLink="false">7663@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello&#60;/p&#62;
&#60;p&#62;I'm having the same exact problem, with the same configuration: Win Xp with SP2 + Xampp.&#60;/p&#62;
&#60;p&#62;Installation went fine, WP users (with the locally installed WP) are recognized, even the french translation file works.&#60;/p&#62;
&#60;p&#62;The path to my stylesheet seems fine, I checked the source. But it won't work.&#60;/p&#62;
&#60;p&#62;I didn't get how to fix it. I saw the PHP code but it doesn't tell WHERE to put it. If anyone could tell, that would be great.&#60;/p&#62;
&#60;p&#62;bbx&#60;/p&#62;
&#60;p&#62;EDIT: I've tried to figure it out by myself but it didn't work out.&#60;br /&#62;
I added the function in the &#34;functions.php&#34; file, and the add_filter in the &#34;default-filters.php&#34; file, both files being in the &#34;bb-includes&#34; folder.&#60;/p&#62;
&#60;p&#62;What did I do wrong?
&#60;/p&#62;</description>
</item>
<item>
<title>kannued on "Won't recognize print stylesheet"</title>
<link>http://bbpress.org/forums/topic/wont-recognize-print-stylesheet#post-6729</link>
<pubDate>Sat, 14 Apr 2007 22:32:11 +0000</pubDate>
<dc:creator>kannued</dc:creator>
<guid isPermaLink="false">6729@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Of course! I forgot about that. Thank you ChrisHajer.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "Won't recognize print stylesheet"</title>
<link>http://bbpress.org/forums/topic/wont-recognize-print-stylesheet#post-6728</link>
<pubDate>Sat, 14 Apr 2007 20:33:47 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">6728@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The stylesheet is found perfectly fine, path is OK and it's linked properly (in FF on XP anyway) but the problem with the sheet is you didn't style the items you don't want to print.  So, they are just &#60;strong&#62;unstyled&#60;/strong&#62; but will still print.  You need to do a &#60;code&#62;display: none;&#60;/code&#62; for the elements you don't want to print for it to work (I think.)&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://erraticwisdom.com/2007/01/22/css-printing-guide&#34; rel=&#34;nofollow&#34;&#62;http://erraticwisdom.com/2007/01/22/css-printing-guide&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "Won't recognize print stylesheet"</title>
<link>http://bbpress.org/forums/topic/wont-recognize-print-stylesheet#post-6727</link>
<pubDate>Sat, 14 Apr 2007 19:43:42 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">6727@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;That's a problem with your browser/html/printing thing, not to do with bbPress. I'm not sure how to fix it though, sorry.
&#60;/p&#62;</description>
</item>
<item>
<title>kannued on "Won't recognize print stylesheet"</title>
<link>http://bbpress.org/forums/topic/wont-recognize-print-stylesheet#post-6721</link>
<pubDate>Sat, 14 Apr 2007 16:13:58 +0000</pubDate>
<dc:creator>kannued</dc:creator>
<guid isPermaLink="false">6721@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Hello&#60;/p&#62;
&#60;p&#62;I have a print stylesheet that will eliminate my left and right columns. But when I go to print preview, it appears to ignore my &#34;print.css&#34;. How do I get it to recognize it?&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.canadianbookclubs.com/bkrv/&#34; rel=&#34;nofollow&#34;&#62;http://www.canadianbookclubs.com/bkrv/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;To call it, I use&#60;br /&#62;
&#38;lt;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34;&#60;br /&#62;
   media=&#34;print&#34; href=&#34;&#38;lt;?php option( 'uri' ); ?&#38;gt;my-templates/CdnBookClubsBKRV/print.css&#34; /&#38;gt;
&#60;/p&#62;</description>
</item>
<item>
<title>talgalili on "style-rtl.css problem in 0.81 with IE"</title>
<link>http://bbpress.org/forums/topic/style-rtlcss-problem-in-081-with-ie#post-5600</link>
<pubDate>Fri, 16 Mar 2007 20:27:13 +0000</pubDate>
<dc:creator>talgalili</dc:creator>
<guid isPermaLink="false">5600@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks Trent !
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "style-rtl.css problem in 0.81 with IE"</title>
<link>http://bbpress.org/forums/topic/style-rtlcss-problem-in-081-with-ie#post-5563</link>
<pubDate>Thu, 15 Mar 2007 16:32:51 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">5563@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I changed the status to 1.0 for that ticket.   It is a big issue, but most issues are put to the nearest version that is possible.   It just hadn't been put to 1.0 yet because it was behind quite a few tickets!   It is changed now and hopefully will be in there and not pushed back to 1.5! &#60;/p&#62;
&#60;p&#62;Cheers,&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>talgalili on "style-rtl.css problem in 0.81 with IE"</title>
<link>http://bbpress.org/forums/topic/style-rtlcss-problem-in-081-with-ie#post-5546</link>
<pubDate>Thu, 15 Mar 2007 07:48:23 +0000</pubDate>
<dc:creator>talgalili</dc:creator>
<guid isPermaLink="false">5546@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thank you chrishajer :)
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "style-rtl.css problem in 0.81 with IE"</title>
<link>http://bbpress.org/forums/topic/style-rtlcss-problem-in-081-with-ie#post-5528</link>
<pubDate>Wed, 14 Mar 2007 21:36:18 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">5528@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I don't think there's anything unusual.   Hang in there.
&#60;/p&#62;</description>
</item>
<item>
<title>talgalili on "style-rtl.css problem in 0.81 with IE"</title>
<link>http://bbpress.org/forums/topic/style-rtlcss-problem-in-081-with-ie#post-5526</link>
<pubDate>Wed, 14 Mar 2007 19:34:56 +0000</pubDate>
<dc:creator>talgalili</dc:creator>
<guid isPermaLink="false">5526@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Well, a week hasn't passed yet, but still the ticket is not up in the 1.0 release trac - I hope it is normal.
&#60;/p&#62;</description>
</item>
<item>
<title>talgalili on "style-rtl.css problem in 0.81 with IE"</title>
<link>http://bbpress.org/forums/topic/style-rtlcss-problem-in-081-with-ie#post-5354</link>
<pubDate>Sat, 10 Mar 2007 13:38:49 +0000</pubDate>
<dc:creator>talgalili</dc:creator>
<guid isPermaLink="false">5354@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks chrishajer.&#60;br /&#62;
Since I did not yet open the forum, I don't see a reason to try and patch it to work. (especially when I don't know how people are supposed to login if I remove the TEMPLATE)&#60;/p&#62;
&#60;p&#62;I hope the issue will be resolved soon, so I could open up the forum :)&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Tal.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "style-rtl.css problem in 0.81 with IE"</title>
<link>http://bbpress.org/forums/topic/style-rtlcss-problem-in-081-with-ie#post-5346</link>
<pubDate>Sat, 10 Mar 2007 03:51:48 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">5346@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I was only kidding about making people use FF. :)&#60;/p&#62;
&#60;p&#62;And from experience, it might take a week or so before the ticket is assigned, unless it's affecting a lot of people or is an easy one to fix.  I wish I had the answer but I have a hard enough time just reading from right to left.&#60;/p&#62;
&#60;p&#62;Did you try removing the / class=&#34;login&#34; / from the template for the login form and see if the problem goes away in IE?  At least that way it would be visible in IE, although not styled and ugly.  It could be used at least temporarily until it's resolved.
&#60;/p&#62;</description>
</item>
<item>
<title>talgalili on "style-rtl.css problem in 0.81 with IE"</title>
<link>http://bbpress.org/forums/topic/style-rtlcss-problem-in-081-with-ie#post-5339</link>
<pubDate>Fri, 09 Mar 2007 23:35:06 +0000</pubDate>
<dc:creator>talgalili</dc:creator>
<guid isPermaLink="false">5339@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;P.s: it seems the ticket is not assigned to any new release, can some1 please fix that ?
&#60;/p&#62;</description>
</item>
<item>
<title>talgalili on "style-rtl.css problem in 0.81 with IE"</title>
<link>http://bbpress.org/forums/topic/style-rtlcss-problem-in-081-with-ie#post-5335</link>
<pubDate>Fri, 09 Mar 2007 19:44:18 +0000</pubDate>
<dc:creator>talgalili</dc:creator>
<guid isPermaLink="false">5335@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;WOW !&#60;br /&#62;
Thanks allot people (chrishajer, Trent) for the attention. It is like a breeze of fresh air after no reply for some time. Thanks again.&#60;/p&#62;
&#60;p&#62;chrishajer - What can I do - people I address sometimes use IE, so I must address there needs.&#60;br /&#62;
Trent - Thanks for the Trac posting.&#60;/p&#62;
&#60;p&#62;Waiting for the 0.81++ release.&#60;/p&#62;
&#60;p&#62;Tal.
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "style-rtl.css problem in 0.81 with IE"</title>
<link>http://bbpress.org/forums/topic/style-rtlcss-problem-in-081-with-ie#post-5314</link>
<pubDate>Thu, 08 Mar 2007 18:41:09 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">5314@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;The image will be there forever.&#60;/p&#62;
&#60;p&#62;I don't know anything about rtl, but if you remove the login form from the page, the page renders properly (no horizontal scroll.)  If you remove the class=&#34;login&#34; from the form tag, the form elements appear in the header, but they are stacked vertically rather than displayed horizontally as they are in FF.&#60;/p&#62;
&#60;p&#62;Here is a screenshot with the form unstyled without a class or style tag:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.chrishajer.com/bike/XLF/rtl-IE2.png&#34; rel=&#34;nofollow&#34;&#62;http://www.chrishajer.com/bike/XLF/rtl-IE2.png&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;p.s. I attached both screenshots to the trac ticket should my server disappear.
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "style-rtl.css problem in 0.81 with IE"</title>
<link>http://bbpress.org/forums/topic/style-rtlcss-problem-in-081-with-ie#post-5312</link>
<pubDate>Thu, 08 Mar 2007 18:18:25 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">5312@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I hope you keep that image up Chrishajer because I made a TRAC ticket based on it!&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://trac.bbpress.org/ticket/612&#34; rel=&#34;nofollow&#34;&#62;http://trac.bbpress.org/ticket/612&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "style-rtl.css problem in 0.81 with IE"</title>
<link>http://bbpress.org/forums/topic/style-rtlcss-problem-in-081-with-ie#post-5308</link>
<pubDate>Thu, 08 Mar 2007 18:09:50 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">5308@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Trent, it's definitely FUBAR in IE6:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.chrishajer.com/bike/XLF/rtl-IE.png&#34; rel=&#34;nofollow&#34;&#62;http://www.chrishajer.com/bike/XLF/rtl-IE.png&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "style-rtl.css problem in 0.81 with IE"</title>
<link>http://bbpress.org/forums/topic/style-rtlcss-problem-in-081-with-ie#post-5306</link>
<pubDate>Thu, 08 Mar 2007 18:03:18 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">5306@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Take a look at this.  On the right is &#34;view source&#34; in Firefox, where the br tags appear properly.  On the left is &#34;edit source&#34; using kwrite on Linux.  Maybe it's just weirdness with kwrite, but it seemed odd to me.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.chrishajer.com/bike/XLF/br-weirdness.png&#34; rel=&#34;nofollow&#34;&#62;http://www.chrishajer.com/bike/XLF/br-weirdness.png&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I suspect though that the problem is with a div causing the problem in IE.  Still looking
&#60;/p&#62;</description>
</item>
<item>
<title>Trent on "style-rtl.css problem in 0.81 with IE"</title>
<link>http://bbpress.org/forums/topic/style-rtlcss-problem-in-081-with-ie#post-5305</link>
<pubDate>Thu, 08 Mar 2007 18:01:31 +0000</pubDate>
<dc:creator>Trent</dc:creator>
<guid isPermaLink="false">5305@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;If you could provide an example screenshot or something like that showing the problem, we could probably see it better and maybe put up a TRAC ticket for it if the problem exists.   It would require telling us what version of IE you are using as well as the screenshot.&#60;/p&#62;
&#60;p&#62;Trent
&#60;/p&#62;</description>
</item>
<item>
<title>chrishajer on "style-rtl.css problem in 0.81 with IE"</title>
<link>http://bbpress.org/forums/topic/style-rtlcss-problem-in-081-with-ie#post-5304</link>
<pubDate>Thu, 08 Mar 2007 17:51:44 +0000</pubDate>
<dc:creator>chrishajer</dc:creator>
<guid isPermaLink="false">5304@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Use Firefox until the problem is resolved?&#60;/p&#62;
&#60;p&#62;[ducks]&#60;/p&#62;
&#60;p&#62;Sorry, I looked and did not see what it could be.
&#60;/p&#62;</description>
</item>
<item>
<title>talgalili on "style-rtl.css problem in 0.81 with IE"</title>
<link>http://bbpress.org/forums/topic/style-rtlcss-problem-in-081-with-ie#post-5273</link>
<pubDate>Wed, 07 Mar 2007 21:41:30 +0000</pubDate>
<dc:creator>talgalili</dc:creator>
<guid isPermaLink="false">5273@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;ping ?&#60;br /&#62;
any one else - any help ?
&#60;/p&#62;</description>
</item>
<item>
<title>talgalili on "style-rtl.css problem in 0.81 with IE"</title>
<link>http://bbpress.org/forums/topic/style-rtlcss-problem-in-081-with-ie#post-5154</link>
<pubDate>Mon, 05 Mar 2007 10:37:21 +0000</pubDate>
<dc:creator>talgalili</dc:creator>
<guid isPermaLink="false">5154@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;Thanks fel64 for the reply :)&#60;/p&#62;
&#60;p&#62;I also don't know what to do :(&#60;br /&#62;
Any one else, has any suggestion ?&#60;br /&#62;
(did anyone else encounter the same problem ?)&#60;/p&#62;
&#60;p&#62;Tal.
&#60;/p&#62;</description>
</item>
<item>
<title>fel64 on "style-rtl.css problem in 0.81 with IE"</title>
<link>http://bbpress.org/forums/topic/style-rtlcss-problem-in-081-with-ie#post-5105</link>
<pubDate>Sun, 04 Mar 2007 00:46:21 +0000</pubDate>
<dc:creator>fel64</dc:creator>
<guid isPermaLink="false">5105@http://bbpress.org/forums/</guid>
<description>&#60;p&#62;I can't help you directly, but looking at it through Firebug in FF I notice that the second &#38;lt;p&#38;gt; element in the login form (containing the username, password and submit items) seems to have no area. I can't see why, though.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
