Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on this site http://church.allthingswebdesign.com/about.php and why won't the p tags float around the image?

share|improve this question

3 Answers

up vote 4 down vote accepted

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 float attribute from the paragraphs, the text will flow around the image.

share|improve this answer
1  
Wow i had a major brain fart. – Catfish Aug 16 '10 at 23:58

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 :)

share|improve this answer

Because paragraphs are block-level elements that will appear on their own lines. Have you tried setting them to display: inline-block and then putting a <br /> after each one to break the text after the end of that paragraph. (There are, of course, many other solutions to achieve this same effect using different tags with the same styles.)

You also need to set the alignment of the image using align="left" (you can use right too, if you want). The paragraphs should work with only this modification. The image also has to be before the first paragraph if you want it to appear in front of that text, otherwise only paragraphs 2+ will wrap around it.

share|improve this answer
i'm floating the image and the paragraphs. I shouldn't need to use align. – Catfish Aug 16 '10 at 23:50
@Catfish: You shouldn't be floating them, there's no logical reason to have them floated. Looking through your styles, you have almost every element floated, that's horrible practice. – animuson Aug 16 '10 at 23:53
That's not correct. Just because the paragraphs are block elements doesn't mean that they turn other elements (the image in this case) into block elements too. If the paragraphs aren't floated, their content will flow around the floated image, exactly how the float attribute was originally intended to be used. – Guffa Aug 16 '10 at 23:56
I have the sidebars, main content area, navigation ul and an image floated. what's bad practice about that? The floated paragraph was a mistake. – Catfish Aug 16 '10 at 23:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.