[Resolved] Page bottom shadow

Home Forums Support [Resolved] Page bottom shadow

Home Forums Support Page bottom shadow

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1512149
    Klaus

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

    #1512184
    David
    Staff
    Customer Support

    Hi there,

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

    #1512185
    Klaus

    https://honigwerk.de/kategorie/reinigung-und-hygiene-am-bienenstand/

    You can see the shadow under the navigation-as-header (I took the css from this forum). That is how I would like to layout the bottom of the page.

    #1512477
    David
    Staff
    Customer Support

    Try this CSS:

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

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

    #1513213
    David
    Staff
    Customer Support

    Glad to hear that

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.