Site logo

Archived topic

Page bottom shadow

5 replies · Started by Klaus on October 31, 2020

Viewing posts 1–6 of 6

I would like to give my page-bottom a little shadow (above the footer). Can you give me a little help with the css?

Hi there,

can you provide a link to your site so i can see the layout and then i can provide the CSS.

Try this CSS:

.site-footer {
    box-shadow: 0 -5px 15px 5px rgba(0,0,0,.25);
}

Thank you, I played a little around and found this looks nice, it adds two little shadows to the footer and the bottom of the page:

.site-footer {
-webkit-box-shadow: 0 -5px 20px 1px rgba(0,0,0,.12);
-moz-box-shadow: 0 -5px 20px 1px rgba(0,0,0,.12);
box-shadow: 0 -5px 20px 1px rgba(0,0,0,.12);
}

.inside-article {
-webkit-box-shadow: 0 10px 6px -6px rgba(0,0,0,0.25);
-moz-box-shadow: 0 10px 6px -6px rgba(0,0,0,0.25);
box-shadow: 0 10px 6px -6px rgba(0,0,0,0.25);
}

Glad to hear that

This archived topic is closed to new replies.