Hi,
In order for the theme to apply the css in the theme panel you need to hit the save button again if you have not changed anything: http://screencast.com/t/qE6szXBPX3C Just access the theme panel and hit save. That should re-apply the css in the custom code boxes.
Thank you!
Hello Arafat,
Please try to add the !important tag to give a higher priority code. Please try the code below and replace it with the following ->
.td-content-wrap{
border-left:1px solid #A8A2A2!important;
border-right:1px solid #A8A2A2!important;
}
Hope this helps!
Thanks.
Hello Arafat,
I have noticed that the classes in this regard were changed in Newspaper 7 and you have to use the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-main-content-wrap{
border-left:1px solid #A8A2A2;
border-right:1px solid #A8A2A2;
}
The result -> http://screencast.com/t/YgWpwzfbBjDK
Thanks.
But no shadow here check this: http://prnt.sc/b2qltz And how to add shadow here.
Check my site: https://mydreamlives.com/
Hello Arafat,
If you want to have the same shadow for the entire layout, please try the code below and place it in Theme panel ->Cusotm CSS area.
The code is ->
.td-boxed-layout #td-outer-wrap {
box-shadow: 0 0 15px #ddd;
}
The result -> http://screencast.com/t/2jWghrc8pX3
Thanks.