Remove border

Posted in: Newsmag
Post count: 60

Hi I would like to remove borders from the theme. I can see that .td-pb-row [class*=”td-pb-span”] handles the left-border, but I didn’t find any css property for rigt border of pages. Could someone point in the right direction please?

Post count: 7909

Hi,

You can change color to the grid line: http://screencast.com/t/ymp8gcdy6
Result: http://screencast.com/t/yGrNMnjNd46

Thanks!

Post count: 60

@Alin Thanks, but it’s not helping because at most i can set the border color to be white to make it disappear. But if there are elements such as ads or images it has white line on it. So either I set the color to ‘transparent’ or set the border width to 0 in css file. So if you can tell me which CSS ID/Class it is I can do it.

Much appreciated.

Post count: 7909

Hi,

Please add a class to the page content in the page template that you use like this: http://screencast.com/t/ZHdhM52SO and use custom css to change color to white(or any color) only for right border: http://screencast.com/t/kEOpFkaf

.border-right .td-container-border:after{
background-color: white;
}

Hope this helps!

Post count: 60

Thanks. That’s removing border only from the hope page and not from other pages/posts. The site in question is Linuxveda.com

Post count: 60

I meant home page only and not from the other pages.

Post count: 60

Thanks for your tip I used this to fix it
.td-container-border:after
{border: none;
border: 0px solid #000;
background-color:transparent;
border:none;}

.td-container-border:before{
border:none;}

Post count: 7909

Hi,

Glad that you managed to solve it and thanks for the message!

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