i have often seen images inside wordpress posts floating and text content would wrap around it. It wont be a nice sight seeing images stacked either to left or right.
Normally if you float: left all the text would wrap around image. But to remove the text flowing around image you have to specify float: none so that the image would stand alone and text would flow belo.
img {
float: none;
padding: 5px;
}
Try it! as float: left and clear: both didnt work for me.
Similar Posts:
- How to design 3 Column Website Layout with Top Navigation Menu in CSS
- Adding border to images in WordPress post!
- CSS Tutorial: How to Design Round Corner Boxes
- how to check if image loaded or not in javascript?
- PHP script to convert text string to image
- How to get image attachment ID in WordPress?
- Improve Readability with Cleartype font for LCD/Notebooks
- CSS Tutorial & Useful Tips for Beginners
- How to show source code in wordpress comments?
- WordPress Problem – Missing Images with Plain Text Only!


February 24, 2010
Thanks! Searched WordPress and couldn’t find the answer. You are a life saver!
April 27, 2011
Thanks a lot!
This answered my question and solved my problem.