• I have recently begun to use wordpress to edit my site. When inserting images into posts, is there any way of inserting them so they appear side by side rather than like a list?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Assuming they will fit side by side, when you enter the image links into the post area, do not put a line break between the links.

    <img src="">
    <img src="">
    <img src="">

    will give images vertically

    <img src=""><img src=""><img src=""> will not

    Thread Starter dominic_traynor

    (@dominic_traynor)

    Thanks very much. I know its only simple stuff but then I’m kind of simple myself

    What you need to do is <img src=”” style=”float:right”> to place the image on the right. Anything else below the image will be placed on the left. If you want it on the left of the text or more images, then you will do <img src=”” style=”float:left”>. You can also do <img src=”” style=”float:center”>.

    So, what happens is that anything following the image with the float will be placed to the other side(s). For your example above, I would do:

    <img src=”” style=”float:left”><img src=”” style=”float:center”><img src=”” style=”float:right”>

    You can check out the site I am working on. The images use float:left and float:right. The site is https://blog.puremobile.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Placing images ALONGSIDE each other’ is closed to new replies.