PDA

View Full Version : How do I change iBrowser to place images in text with default Alighn Left?


pcoskat
07-22-2007, 09:36 PM
Currently, there is no formatting assigned to images when they're inserted into articles.

I always change it to "Align Left". How do I make this the default setting?

My preference is that inserted images always have the text wrap around the image, as seen in the SECOND image here: http://www.theweighwewere.com/Read-Weight-Loss-Stories/462.html

Micha
07-23-2007, 02:22 PM
Try this:

In your templates/style.css find this selector #article_body img (should be somewhere around line 68), and add float: left; property, so the entire code would look like this:

#article_body img {
float: left;
margin: 0px 6px 6px 0px;
}

That way, all images inserted inside article (that is your #article_body ID) will float to the left side and have text wrap around them.