how to separate the edge of the site from the background shadow

Posted in: Newspaper
Post count: 28

Good day ! Please tell me how can I configure that the edge of the body main part was set off by the background image ? region those who the screenshot is specified . With Best Regards, Sergey
скриншот

Post count: 20688

Hi,

I don’t think I fully understand what exactly you want to modify about the shadow. If you could provide some additional details about this it will be very helpful.

Thanks

Post count: 28

OK, let the issue drop , it is not critical , but have a question about is it possible for themes to do so , that would have been indented from the top ( that would show in the background in place of background , advertising, advertisers ) ? the example in the screenshot here that’s how this site

Post count: 20688

Hi,

You could achieve something like that by setting a margin for the body, and the background will display above the header as well. Like this example
https://www.screencast.com/t/nDyaErBbvYgX
This is the code used in the example (you can modify the margin value as you want). If you decide to use it, enter it in Theme panel->Custom Css section

body {
margin-top: 300px;
}

Thanks

Post count: 28

thank you )) it turned out

Post count: 28

as for the shadows , I meant to do so that would be the main part separated from the background of the site like that in the screenshot

Post count: 20688

Hi,

You can try a code like this one for example
https://www.screencast.com/t/LBGjRMDsvD5p
It will add the same shadow for the outer wrap, just like in the News Magazine demo that you mentioned. Enter it in Theme panel->Custom Css section

@media (min-width: 1180px) {
.td-boxed-layout #td-outer-wrap {
width: 1164px;
margin: 0 auto;
-webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.12);
-moz-box-shadow: 0 0 5px 0 rgba(0,0,0,.12);
box-shadow: 0 0 5px 0 rgba(0,0,0,.12);
}}

Thanks

Viewing 7 posts - 1 through 7 (of 7 total)
The forum ‘Newspaper’ is closed to new topics and replies.