• Resolved OB

    (@reburton3941)


    Hi, I would like to remove or change the color of the outline on the image in my post. This is the image on the post reached by clicking the Read More button. I repeat that I have little experience in modifying my style sheets but definitely want to learn. I have a child theme and I’m using the Custom CSS Manager widget which seems to be more effective with the style changes. My website URL is https://www.bestmenswatchesreviews.com
    I am making similar requests for other issues on this site please excuse my repetition of the same information.
    Thanks in advance for your help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • You can use this CSS to set the border around the image on your posts:

    .wp-caption {
        border: 1px solid #ccc;
    }

    The “#ccc” is the color value – if you want to keep the border and change the color, adjust this value to your liking. If you want to remove the border altogether, use a value of “none” in place of all three values, like this:

    .wp-caption {
        border: none;
    }
    Thread Starter OB

    (@reburton3941)

    Thanks! That did it. I really appreciate it.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing outline of the image on post’ is closed to new replies.