• Normally, when you align an image to the left, the text wraps around the image, and bleeds into the bottom.

    How do I keep the text in it’s own column keeping vertical consistancy?

Viewing 1 replies (of 1 total)
  • Sounds like you need to create a table with the image in the first column and the text in the second. Or possibly create a div structure similar to this:

    <div class="entry-wrap">
       <div class="image-wrap">
         <img image goes here />
       </div>
       <div class="text-wrap">
          text goes here
       </div>
    </div>

    Use CSS to set the widths and float properties to get the parts to line up properly.

Viewing 1 replies (of 1 total)

The topic ‘Text formating’ is closed to new replies.