I'm working on this site http://church.allthingswebdesign.com/about.php and why won't the p tags float around the image?
|
Because the paragraph tags also are set to float. The paragraph below the image does actually float to the right of the image. However, as the content of the paragraph makes it take up the entire width of the parent element, there isn't room for the paragraph to the right of the image, and it flows below the image. If you remove the |
|||||
|
|
Wrapping the image in a floating div should fix it. Or at least thats what I do, unless theres a better way. For anyone else that cares, heres the code, which is setting float attribute on an image tag:
#body img.leftImage {
float: left;
width:300px;
height: 200px;
padding: 15px;
}
Edit: Guffas answer works :) |
|||
|
|
|
Because paragraphs are block-level elements that will appear on their own lines. Have you tried setting them to You also need to set the alignment of the image using |
|||||||||
|