have you read and checked:
http://codex.wordpress.org/Wrapping_Text_Around_Images
there is no image in your link – please post a direct link to a post/page with the wrapping problem.
Thread Starter
Ahab
(@ahab)
Specifically, I’m working on my “About” page. As you can see, the text is below the image, but in the dashboard edit page the text wraps around the image, which is what I want.
Thread Starter
Ahab
(@ahab)
Thread Starter
Ahab
(@ahab)
I did read that but nothing helped.
the image is followed by text styled as h2, which has this style in style.css:
div.entry h2,
div.entry h3 {
clear:both;
}
which is breaking any attempts to float;
try and add something like this to style.css:
div.entry h2{
clear: none;
display:inline;
}
(the ‘display: inline;’ is only needed if you want the text to flow back under the image)
if you need to make it specific to the ‘about’ page, try:
.page-id-28 div.entry h2 { clear: none; }
(not tested for any side effects in other parts of the site)
Thread Starter
Ahab
(@ahab)
Gorgeous! Thank you so much!!!