How to add a shadow betwen the page and bg

Posted in: Newspaper
Post count: 3

Hello guys

I would like to know how to add a shadow between the page and the background.

Thanks

Post count: 6600

Hi,

Unfortunately the theme doesn’t have an option for that but I believe you can use custom css for that and try something like this: http://screencast.com/t/74BmaniRmxM but this still needs adjustments.

.td-container {
box-shadow: 10px 10px 5px #888888;
}

You can search the web for ways on how to add it via css or if you don’t have css knowledge you can hire a freelancer to do it for you as this needs custom work and we cannot provide any at the moment unfortunately.

Thanks

Post count: 3

Thanks for the reply. This is the effect that I want, but want it on the white box behind all the content that only appears when you add a background.

Post count: 3343

Hi,
Set a background color, a light gray or white from here: http://screencast.com/t/cXytYQTm9Y

Then use this CSS to add the shadow:
.td-boxed-layout #td-outer-wrap {
box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
}

http://screencast.com/t/GMcPWwPdwTP

Post count: 3

Great! It worked. Thanks

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