I would like to add a news style for my menu. On this menu I have add a module suffix class name : menuforum.
I have this code :
- Code: Select all
/* suffix menuforum*/
.box.menuforum{
background: #016cbc!important;
color: #999;
padding: 20px;
}
.box.menuforum.header {
background: transparent!important;
}
.box.menuforum h1,
.box.menuforum h2,
.box.menuforum h3,
.box.menuforum h4,
.box.menuforum h5,
.box.menuforum h6 {
color: #fff;
}
.box.menuforum a {
color: #fff;
}
.box.menuforum a:active,
.box.menuforum a:focus,
.box.menuforum a:hover {
color: #e25b32;
}
.box.menuforum b,
.box.menuforum strong {
font-weight: bold;
}
I would like the bg color change when we clic on buton color at the bottom of the website (green, purple, blue ...), like the color of the top menu.
How to do this please ?