Getting space between photos….?
-
I have a page with two photos side by side, and then one centered underneath. I am unable to get any spacing between the top two and the bottom one. Why doesn’t
work in html?The blog I need help with is: (visible only to logged in users)
-
To display code here, you need to enclose it in backticks (see below reply field).
The br tag does work. But (as you can see above) its job is a line break, not blank space.
Assuming you’re talking about plain, non-captioned images, then to create more space between them you add a bottom margin to the upper ones or a top margin to the lower one.
(And if you don’t want us to assume, you need to link or point to the page in question instead of referring to “a page”.)
-
-
Ah, you’ve set the alignment of the first two images to left and right, which means wrap-around, so the third image is trying to squeeze itself in between. To stop the wrap-around effect, you need to paste this before the code of the third image:
<br style="clear:both;" />This will give you the ‘normal’ spacing of the theme. If you’d like to have even more space above the third image, change its code from this:
<img src=ETC ETCto this:
<img style="margin-top:34px;" src=ETC ETCChange the number to adjust the space.
-
- The topic ‘Getting space between photos….?’ is closed to new replies.