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;
}