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
- 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
- Improve Readability with Cleartype font for LCD/Notebooks
- CSS Tutorial & Useful Tips for Beginners
- WordPress Problem – Missing Images with Plain Text Only!
- Firefox 3 problem with CSS
- HOWTO: Use Automatic Washing Machine to Wash Clothes?
- How to create 3D transform of Images in Photoshop


February 24, 2010
Thanks! Searched WordPress and couldn’t find the answer. You are a life saver!