If your text isn’t “wrapping” around images in WordPress even when you tell it to when you add an image, it’s probably because the following code isn’t in your related style.css page of the WordPress theme you’re using.
Copy/Paste the following into the bottom of your stylesheet, it should fix it for you:
img.alignright {float:right; margin:0 0 1em 1em}
img.alignleft {float:left; margin:0 1em 1em 0}
img.aligncenter {display: block; margin-left: auto; margin-right: auto}
a img.alignright {float:right; margin:0 0 1em 1em}
a img.alignleft {float:left; margin:0 1em 1em 0}
a img.aligncenter {display: block; margin-left: auto; margin-right: auto}
Brought to you by the guy who just wasted half an hour trying to figure out why his text was no longer wrapping around images after changing themes.
![]() |
About Tim Gross Tim Gross is an online marketing consultant, direct response copywriter, author, and video training developer. For the latest free training videos, free advice, and additional resources, subscribe now at http://InternetMarketingCourse.com or at his blog http://TimGross.com |


Leave A Reply (2 comments So Far)
heidi
558 days ago
Thank you very much for this one!
Hope this is the answer that I have been searching for. It really sucks when you are not familiar with css.
Gayle
322 days ago
This solution worked perfectly! Now my posts and photos are seamlessly integrated! Thanks, Tim!