Border

Posted in: Newsmag
Post count: 8

Hi,
I set row color to blank on the homepage. Background also is black, but there is tiny white line on the right, and at the bottom of the page (https://okolicelwowa.pl/). How to change it?

  • This topic was modified 8 years by meles.
Post count: 20688

Hi,

There is a border set for the container, the Newsmag theme contains many borders such as this
https://www.screencast.com/t/XCNkL4hwL
These borders would be hard to remove. Try a code like this for that bottom border
https://www.screencast.com/t/C30wJpsfc5

.home .td-container {
border-bottom: none;
}

Thanks

Post count: 8

Thanks, how about the border on the right side?

Post count: 22421

Hello,
Please try this custom css:

.td-pb-row:before, .td-pb-row:after{
display:none;
}

Thank you!

Post count: 8

Cool,

But it caused another problem, black background on the pages and posts. How to limit this style only to the homepage? Now it’s like this:


.home .td-container {border-bottom: none;}
.td-pb-row:before, .td-pb-row:after {display:none;}

Funny 😀

Post count: 20688

That code will apply only for the homepage if it is in this form

.home .td-container {border-bottom: none;}
.home .td-pb-row:before,
.home .td-pb-row:after {display:none;}

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