Change border and background color in the frame around images through CSS
-
Hello,
I have made some changes using CSS editor. I’ve inserted a frame for every post with the same background color as lateral widgets. Now that frame around every image inserted in the posts are almost invisible.
Is there any way to change the border and background color in every frame around the images?The blog I need help with is: (visible only to logged in users)
-
Hi there,
You can change the border and background color around your images by changing the properties in the wp-caption class. Here is an example for changing the background color to white and the border to black:
.wp-caption {
background: white;
border: 1px solid black;
}Please let me know how that works for you!
-
-
-
- The topic ‘Change border and background color in the frame around images through CSS’ is closed to new replies.