boxed homepage

Posted in: Newspaper
Post count: 95

How do I set a background for the homepage only so only the homepage is in a boxed layout? I do not want the boxed layout site wide.

Thanks.

Post count: 20688

Hi,

Setting a general background color or image in the theme panel will affect the whole website.
One solution would be to use some CSS to do it, without using the theme panel background option.
For example a code like this will make the homepage only appear as boxed, with a background image of your choosing

.home .td-container-wrap {
width: 1164px;
}
body.home {
background:url("");
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
}

Or a background color, depending what you want to do

.home .td-container-wrap {
width: 1164px;
}
body.home {
background-color: red;
}

You could give this suggestion a try, let me know. I can modify the codes if needed, and also a link to the website would be helpful, so I can test there.

Thanks

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