Hello, I would like for the container box shadow to continue down and around the footer instead of stopping at the bottom of the main content. If I use this code: Code: .container { box-shadow: none ! important; } the box shadow disappears completely. Instead, I would prefer for the box shadow to continue around the footer, instead of making a line across the bottom of the main content. Is this possible? If not, is it possible to eliminate the bottom of the box shadow (top and sides of box shadow remain)? Thank you for your help.
Hello, Could you please specify your issue with the help of screenshot images that around which section you want to apply box shadow.
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .footer-container { box-shadow: inset 0 0 1px #000000; } .footer-navi { box-shadow: inset 0 0 1px #000000; } This will solve your issue.