pictures side by side

  • how do i get my pictures side by side instead of one after another?

  • Click the “Text” tab to view the HTML of the post.
    For each image, remove any <p> and </p> tags and remove any spaces between each image tag. I
    Keep in mind that images will only show side by side if both images are small enough to fit side by side within the current width of your main content column.

    For example:

    Before
    <p><a href="http://mysite.com/imagebig.jpg"><img src="http://mysite.com/image.jpg" /></a></p>
    <p><a href="httpmysite.com/imagebig2.jpg"><img src="http://mysite.com/image2.jpg" /></a></p>

    After
    <a href="http://mysite.com/imagebig.jpg"><img src="http://mysite.com/image.jpg" /></a><a href="httpmysite.com/imagebig2.jpg"><img src="http://mysite.com/image2.jpg" /></a>

  • The topic ‘pictures side by side’ is closed to new replies.