Forums
Home / Theme: Hitchcock / Home page dark overlay
(@derrickkca)
7 years, 4 months ago
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.
(@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
(@delpil)
7 years, 1 month ago
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
(@marcsteeb)
6 years, 8 months ago
/*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; }