PDA

View Full Version : Weird paragraph spacing in IE



irishcash33
January 6th, 2009, 07:08 PM
Hi,
On this page (http://www.wallstclothing.com/faq.html) in FF and safari, it looks fine. But in IE, some of the paragraphs are way over to the right and only showing a few words per line. I have looked over the code, re type the info, and nothing is fixing it.
Any suggestions would help.

Thanks

ramie
January 7th, 2009, 12:40 PM
Clear the floats from the paragraphs, like.



<h2>foo</h2>
<p>bar</p>
<br style="clear:left" />


Personally I would be more inclined to add a clear:left to the css for the h2 tag to keep it all clean, assuming I had to work with that code.

You don't really need to float those paragraphs left, they do that naturally.

irishcash33
January 7th, 2009, 04:27 PM
Thank you for your response. The clear:left worked!