Hi
Can you share a link to your site and also add details of the section where we need to look
Thanks
http://annemarieboumans.nl/meer/
here is the link! Around one of the images I made a border myself, in Photoshop.
Thanks for helping.
Hi
You can add border to the images by using the following code in your style.css file. I would advice you to go for child theme to make such changes
.alignleft {
border: 1px solid #ccc;
}
Hi
You can add border to the images by adding the following code to the theme’s style.css file. I would advice you to make the changes by using a Child theme.
.alignleft {
border: 1px solid #ccc;
}
You should not add that code to .alignleft. Instead, add it like this:
.entry-content img {
border: 1px solid #ccc;
}
This will add a border to all your images inside your posts.