I would like to add a default image border around every new post below:
border: solid 2px #99aabb; padding: 5px; margin: 5;
How can I put this in the CSS?
Thank you,
Suzi Wilson
I would like to add a default image border around every new post below:
border: solid 2px #99aabb; padding: 5px; margin: 5;
How can I put this in the CSS?
Thank you,
Suzi Wilson
add it to style.css of your theme:
img { border: solid 2px #99aabb; padding: 5px; margin: 5px; }
you may need to make a more specific style to restrict this to the images in posts.
You must log in to post.