Log in

View Full Version : Getting Everything in Line (Text and Pics)



redpoint
02-11-2009, 02:56 PM
Hello all! I was wondering how to fix a simple problem.

http://jonesandfarthing.com

If you look on certain pages, the text does not line up with the picture. I want to fix this problem so it looks more professional.

Any help is greatly appreciated.

Thanks,
-Matt

Master_script_maker
02-11-2009, 08:47 PM
take out the <h3> surrounding the image e.g: from
<div class="floatRight">
<h3><img height="266" width="355" src="mainpic.gif"/></h3>
</div> to
<div class="floatRight">
<img height="266" width="355" src="mainpic.gif"/>
</div>

redpoint
02-11-2009, 09:28 PM
Thank you very much!