Changing background colur of action panel and footer
Hi,
I've changed the background colour of my onepage theme footer in the custom CSS with:
#Footer {
background-color: #394258;
}
Whic works well. But when I try to change the top action bar with:
I've changed the background colour of my onepage theme footer in the custom CSS with:
#Footer {
background-color: #394258;
}
Whic works well. But when I try to change the top action bar with:
.header-classic #Action_bar, .header-stack #Action_bar {
background-color: #394258;
The top bar changes OK but the footer reverts to its default dark grey.
How can I get them both to work?
Thanks in advance.
The top bar changes OK but the footer reverts to its default dark grey.
How can I get them both to work?
Thanks in advance.
Comments
looks like your second css is broken (no closing bracket) and that's why any code under this one won't work.
Thanks!