How can this be solved?
The <p>
tag has "clear:both" property set. Due to this the text is not wrapping adjacent to the image. see the screenshot for reference.Removing this "clear" property will work for you.
That's due to the GENERAL clear: both;
setting for p
tags of your theme. You could erase that in your stylesheet, but that might affect a lot of other pages.
Or you add a style="clear:none"
attribute to those p
tags which follow the image in the "text" (actually code) mode of the editor, like
<p style="clear:none"> ...your text ... </p>
I need to ensure the paragraph clear property is set to none.