Hello mystudent,
If you want to add a border to all sidebar in Newspaper, you have to use a bit of CSS code to add this. Please try the code below and add it in Theme panel->Custom CSS area.
The code is ->
.td-ss-main-sidebar{
border: 3px solid black;
padding: 5px;
}
The result you should see here -> http://screencast.com/t/tR6Gj6XMOf
Hope this helps!
Thank you for the message!
Hello mystudent,
If you want to have around the content area, sidebar and between sidebar and content area a border, you have to use a bit of CSS code to do that. Please try the code below and add it in Theme panel->Custom CSS area.
The code is ->
.td-ss-main-content {
border:1px solid black;
padding: 5px;
}
.td-ss-main-sidebar{
border-top:1px solid black;
border-right: 1px solid black;
border-bottom: 1px solid black;
padding: 5px;
}
.td-pb-row [class*="td-pb-span"] {
padding-left: 0;
padding-right: 0;
}
The result you should see here -> http://screencast.com/t/6uOKRV3MG
Hope this helps!
If is not what you mean, please provide more details about your desired changes so I will be able to provide a more accurate response. Some useful screenshots are welcome for a good understanding.
Thank you for the message!