trainwrecka
Member
Posted 5 years ago #
The space around my images is nonexistent. Witness it here: http://insidethevibe.com/?p=582
I want to add space ... obviously.
Question2
Is there a way to rename an image after it is uploaded? I have uploaded a few pictures with the same name and it deletes the previous image.
westbym
Member
Posted 5 years ago #
One quick way is to set the hspace and vspace attributes. Take a look at : http://www.htmlcodetutorial.com/images/_IMG_HSPACE.html . Then edit the html of your post.
trainwrecka
Member
Posted 5 years ago #
i know there is a way to do it in the CSS that way it is the same everytime ... just not sure how.
westbym
Member
Posted 5 years ago #
In css its called the margin. You can try adding this, or editing your current css file. That is a huge pain to google. Pulled this off my css.
img.left {
float:left;
margin: 0px 10px 10px 0px;
}
There is also an entry for img.right. Just replace left with right for that one. Hope this helps.