remove lines from photos

  • Unknown's avatar

    How do I remove the lines around the photos. The line around the pink banner at the bottom of the home page needs to go.

    The blog I need help with is: (visible only to logged in users)

  • Hi there,

    That line around the banner is what we call a box shadow. You don’t need the customizer if you want to turn it off in particular cases where the images are part of the content you edit:

    – While editing your post, click on the options button that hovers on top of the image to bring up the Edit Image dialog.
    – Click on the Advanced Settings tab.
    – Under Advanced Image Settings, in the Styles field, add the following:
    box-shadow: none; after whatever’s already there.
    – Click Update to close the Image dialog.
    – Click Update to save changes to your post.

    If you need to get rid of these lines systematically, you’ll need to figure out the appropriate CSS selector and then add a custom CSS rule through the Customizer, like so:

    some-particular-selector {
        box-shadow: none;
    }
  • The topic ‘remove lines from photos’ is closed to new replies.