Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter ketshi

    (@ketshi)

    Oh and the second image is the beginning of the ‘Read more’ part. Please, help me out!

    Hi

    WordPress has wrapped your second image in a <p> tag. The simplest way to resolve it is to apply a clear:left; to the p that wraps the 2nd image

    To do it the right way, add this to your CSS file
    .clearleft {clear: left; }

    Then go to the HTML tab in the WP editor and change the P before the second image to this <p class="clearleft">

    You will want to add some top margin or padding also because it will be up against the bottom of the image above it
    <p class="clearleft" style="margin-top: 10px;">

    Thread Starter ketshi

    (@ketshi)

    Thank you very much! Such a simple solution. You will see more questions of me soon…

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to left align (and wrap around text) more than one image?’ is closed to new replies.