In my previous post on the subject, I had talked about the basic phenomenon by which pictures are put side by side in a post. Now here, we will go a step further and discuss as to how Side by Side Photo can be laid with the help of HTML code.
Laying Side by Side Photo
If you add/upload an image directly from blogger post editor, it will be automatically put in a div, and styled with “text-align:center”. The same default setting will also be applied to the second, third, fourth… image you add. Open your post editor and choose HTML mode (after you add some images), the codes will be similar to this:
The same default setting will also be applied to the second, third, fourth… image you add. Open your post editor and choose HTML mode (after you add some images), the codes will be similar to this:
<div style=”text-align: center”><a href=”imageurl”><img src=”imageurl”></a></div><div style=”text-align: center”><a href=”imageurl”><img src=”imageurl”></a></div><div style=”text-align: center”><a href=”imageurl”><img src=”imageurl”></a></div>
and so on…..
<div style=”text-align: center”><a href=”imageurl”><img src=”imageurl”></a><a href=”imageurl”><img src=”imageurl”></a><a href=”imageurl”><img src=”imageurl”></a><div>
<a href=”imageurl”><img width=”200px” height=”100px” src=”imageurl”></a>
Thanks for the help on how to do this, I do have some post that I would like the images side by side but didn't know to to do it. Thanks again 🙂
Most Welcome 🙂