Thread Starter
uhn556
(@uhn556)
My guess that somewhere in the stylesheet there’s a clear on the br tag. So something along the lines of:
br { clear: both }
So the br element is clearing, pushing the text after it underneath your floated image.
That’s my guess, anyway
Thank you very much! That was the exact reason. The theme had this line in its stylesheet by default
.entry p {
clear:both;
}
I’ve deleted the clear:both; and now it works perfectly.