Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
You can accomplish this with CSS3.
Here’s a CSS3 generator http://css3generator.com/ .
Select ‘Box Shadow’ from the dropdown list.
Thread Starter
Emil
(@qu1em)
Thank you but the problem is that I can’t figure out how to implement that into the theme. It doesn’t have anything wrapped around the header, content and footer I think.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Does that theme come with a section in the dashboard named, “Jetpack” or “Custom CSS”?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Try some CSS like this, within your Child Theme stylesheet or Custom CSS plugin;
.container_12,
.container_16 {
overflow: hidden;
-webkit-box-shadow: 0px 0px 5px 2px #333333;
box-shadow: 0px 0px 5px 2px #333333;
}
If you’re not using a Child Theme or Custom CSS plugin, try this http://wordpress.org/extend/plugins/custom-css-manager-plugin/
Thread Starter
Emil
(@qu1em)
Thank you it worked and thanks for the link! I was planning on using a child theme and I was looking for a plugin for that 🙂