Viewing 2 replies - 1 through 2 (of 2 total)
  • Your images are inside p tags. These are block level elements, which means you will get one block on one line, then a line break, then next block will be on the next line.

    Possible approaches include:
    – set these particular p tags, or the img tags if you get rid of the enclosing p tags, to {display:inline-block}
    – set the block level elements to {float:left} (the p, not the img)
    Either should remove the intervening line break.

    Thread Starter twitch17

    (@twitch17)

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Images not aligning side by side’ is closed to new replies.