Page background color

Posted in: Newspaper
Post count: 14

Hello!

I wanted to remove the white spot on my home page underneath my content, like the row has “td-black-row” on it but i want the whole page black like that row – http://www.yycnow.com/

Also how do I go about making certain page backgrounds black like the homepage setup? in it and wanted to make some page all black with that color.

Like for this page I want the background to be black and not white – http://www.yycnow.com/desserts/

Let me know if you had a hard time understanding this, I can take screen shots

Post count: 23312

Hello yycnow,

If you want to remove that white space, you have to use a bit of CSS. Please try the code below and add it in Theme panel->Custom CSS area.

.td-main-content-wrap {
padding-bottom: 0;
}
.td-cars .td-black-row {
margin-bottom: 0px !important;
}

The result -> http://screencast.com/t/WE0gNLWi

If you want to have the different color for each page, you have to target it by page ID.

..page-id-3551 .td-main-content-wrap {
background-color: black;
}

The result -> http://screencast.com/t/MkuqlcmWe

Please notice that you have to do some customizations to give a good look.

Hope this helps!

Thank you for the message!

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