Viewing 2 replies - 1 through 2 (of 2 total)
  • The first link you gave takes to to an admin login page. but you can add CSS styles to just one image if you only want to do it once. Something like

    <img src=”image.jpg” style=”float:left; margin-right: 7px;”>

    You can float the image to the left or right of the text and that might work.

    You can control how it’s wraped in the style.css file, like this:

    img.alignleft {
    padding: 0;
    margin: 18px 0 -10px 0;
    display: inline;
    }

    As you can see, I’ve changed the bottom margin to -10, because I want a wrap gived by the line separation of the text style.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Text should wrap around image – but doesn’t’ is closed to new replies.