Theme: Appetite, Feature Image issue is it an oppacity issue?

  • Hi there,

    I’m working on this site:
    https://cisciccasymposium.wordpress.com/

    I was wondering is it possible to remove the haze in the header feature-image? it looks dull with that look applied to it. I’m not sure if it’s an oppacity effect or not but would like to turn it off so that the image is shown like it’s suppose to be. Bright and colourful.

  • I’m having the same issue. I’d like to remove the grey ‘haze’ from my header image in the appetite theme. Love any advice!

  • Cisciccablog, I’ve found the solution to this. If you adjust the following:

    #primary-header .featured-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    left: 0;
    opacity: 0.35;
    position: absolute;
    right: 0;
    top: 0;
    }

    And change the opacity to 100%, like so:

    #primary-header .featured-image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    left: 0;
    opacity: 100;
    position: absolute;
    right: 0;
    top: 0;
    }

    the image becomes fully opaque

    I noticed that you don’t have the navigation elements popping up on top of your feature image when you navigate through. Could you tell me how you removed them?

  • The topic ‘Theme: Appetite, Feature Image issue is it an oppacity issue?’ is closed to new replies.