• Resolved derrickkca

    (@derrickkca)


    How can I remove the dark overlay on the home page so that the home page background image is the same as the uploaded file image.

    • This topic was modified 7 years ago by derrickkca.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Anders Norén

    (@anlino)

    Hi @derrickkca,

    You can remove it by going to Admin > Apperance > Customize > Extra CSS, and then add the following:

    .header-image:after { content: none; }

    That will hide the dark gradient on top of the image, and create a hard break between the bottom of the image and the rest of the page.

    — Anders

    Hi @anlino,

    how can i remove the dark gradient from the photo boxes on the homepage ?
    I don’t mind having it on the background image but I would like to remove it from the square images as they can be brighter.

    Thank you

    /*You can use this code (customizer add css)*/

    /*—Anpassung der Overlays für Bilder der Beitragsseite—*/

    /*Einstellung der Grundhelligkeit*/
    .has-post-thumbnail .post-overlay {
    background: rgba( 0, 0, 0, 0.3 )!important;
    }

    /*Einstellung der Helligkeit beim Hovern*/
    .post-overlay:hover {
    background: rgba( 0, 0, 0, 0.0 )!important;
    }

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Home page dark overlay’ is closed to new replies.