Customisation of theme background

my website is tdholidays.co.in
How do I change the background colour for the entire body keeping the header and footer as the same colour? Please help me through the process

Hey Karan,

Go to X > Theme Options > Layout and Design and you can change the Background Color.

For your header and footer to remain the same color (blue), you will need custom CSS. Please add this code in Theme Options > CSS

.masthead,
.x-colophon {
    background: rgb(4,16,49);
}

Hope that helps.

The footer has also changed its color. Can u send me an updated snippet?

Hi there,

Please add this code as well:

.x-colophon.bottom a {
    color: #fff;
}

You can find more info on how to check for CSS selectors here.
Then information about writing your custom CSS here.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.