sidebar border

Posted in: Newspaper
Post count: 80

how to add sidebar border to Newspaper default demo without affecting full width header and footer area.
I need to add border of 1 or 5 pixel on both sides of content area.

Post count: 23312

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!

Post count: 80

Hello sir, sorry for misunderstanding…
i mean border for whole wrap (content area + sidebar) and border between content area and sidebar area also.
Hope you get me.

Post count: 23312

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!

Post count: 80

Thank you very much, exactly what i needed. Awesome.

Post count: 23312

Hello mystudent,

I am glad that I could help you!

Thank you!

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