Change top and bottom background color

Hello,

I did not see any option in customizer where I could change background color (if there’s one please advise).
Searching the forums I’ve found thisCSS:

/* Change background color START /
body .site {
background-color: rgba(0,255,0,0.3);
}
/
END */

But I can’t find option to change top and bottom?

1 Like

Hi,

There is no options to change top and bottom.

To change it you can add the code below in Theme Options > CSS

/* Header */
.x-logobar {
   background-color: red;
}

.x-navbar {
   background-color: red;
}

/* Footer */
.x-colophon.top {
   background-color: blue;
}

.x-colophon.bottom {
   background-color: blue;
}

Hope that helps.

Thanks. What about the rest of white space? I assume menu background is changed somewhere under UberMenu config?

Hi There,

To change background color of UberMenu, please navigate to UberMenu Settings > Style Customizations > Menu Bar background:

Hope it helps :slight_smile:

That helps! What about bellow menu and very bottom of the page?

Hello @JohnyBeGood,

Thanks for updating the thread. :slight_smile:

Well you can change the color of area below menu but that will have a cascading effect on the page background color as well.

.entry-wrap {
    background-color: #ddd;
}   

You can change the bottom color from X > Launch > Options > Layout and Design > Background Options > Background color.

Thanks.

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