I have images in a text widget, but they're all smooshed together. I'd like to have some white space in between each image. Any idea how? Thanks so much!! :)
I have images in a text widget, but they're all smooshed together. I'd like to have some white space in between each image. Any idea how? Thanks so much!! :)
You can add a <br /> below each image for a line break.
The other option that would work is <br clear="all">
Alx, thank you!! It worked. :D
<br clear="all"> is deprecated. Should use <br style="clear:both;" /> instead.
Thanks, @Joseph.
This topic has been closed to new replies.