Skip to content
Grav 2.0 is officially stable. Read the announcement →

Community guidelines

Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.

Themes & Styling

Adding an overlay to the showcase image

Started by Lewis 8 years ago · 1 replies · 1006 views
8 years ago

Hi! I'm trying to add an overlay to the showcase image(theme: Woo) however my attempts are futile.

Basically, i'd like to display the hero-text and button in the centre of the image, rather than above(or beneath), while also adding a mostly transparent box behind it so that it stays readable.

My website is: mark-nichols.net

Thanks!

8 years ago

hi !

It' just CSS tweak, take a look Here Woo Repo

replace img/hero-bg.png with your hero img url add height style for instance height: 600px;
do the same with img/[email protected] but adjust height and maybe alternate version of your hero image

CSS
/* ------------------------------------------------------------------ */
/* c. Hero Section
/* ------------------------------------------------------------------ */

#hero {
   padding-top: 66px;
   background: #23292f url(img/hero-bg.png);
   overflow: hidden;
}

/* For high-res devices */
@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    #hero { 
        background: #23292f url(img/[email protected]); 
        background-size: 200px 200px;
    }

}

See in action !
33|690x275

of course you don't need the showcase_image (the one with phone, tablet and laptop), but adjust your height according to your needs.

To add an overlay

CSS
#hero .twelve {
    background-color: rgba(0, 0, 0, 0.8);
}

In a second time you can change the blueprint from showcase modular : for instance add a color field for overlay, and a media field to change the hero background etc Everything is possible with Grav.

The best way is to use theme inheritance to do your changes without modify original theme

Hope that helps

Dimitri

last edited 02/27/18 by Dimitri Longo

Suggested topics

Topic Participants Replies Views Activity
Themes & Styling · by Pedro M, 2 months ago
4 198 2 months ago
Themes & Styling · by Ian, 2 months ago
3 94 2 months ago
Themes & Styling · by Norbert, 2 years ago
11 455 3 months ago
Themes & Styling · by Lukáš Findeis, 3 months ago
0 48 3 months ago
Themes & Styling · by Sebadamus, 4 months ago
5 128 3 months ago