Viewing 1 replies (of 1 total)
  • Hi @elevenfingeredcrafter

    The opacity of the featured image is actually a color overlay.

    You should be able to add the following to the ‘Additional CSS’ section of the customizer on your site. You can get there from the dashboard by navigating to ‘Appearance > Customize > Additional CSS’:

    .hero {
       color: transparent;
    }

    If you wanted to change the color you can just swap out transparent for a HEX value (which will cover the image) or you can use an RGBA value to make the color transparent.

    Example:

    .hero {
       color: rgba(209, 49, 49, 0.56);
    }

    Let us know if that helps or if you still need some help!

    Evan

Viewing 1 replies (of 1 total)
  • The topic ‘Featured Image Opacity’ is closed to new replies.