I love the new photo upload featue. Anyway to add spacing so the text doesn't bump up against the pics in a post. Also, would be great if the ability to add a border, select a border size and color.
I love the new photo upload featue. Anyway to add spacing so the text doesn't bump up against the pics in a post. Also, would be great if the ability to add a border, select a border size and color.
You can do all this with CSS.
I'd start with adding this to your style.css:
.post img {
margin: 5px 10px 5px 10px;
border: 1px solid #ccc;
}
And adjust sizes and colors to your liking. :)
This topic has been closed to new replies.