Bonjour,
J'aimerais inverser les couleur noir et blanche des îcones menu et panier, de mon site en version mobile: www.lepetitmot.fr
Actuellement le site se présente comme ça:
Mais j'aimerais qu'il soit comme ça:
Sur /public_html/themes/sellon/_dev/css/theme.scss , j'ai modifié la couleur du background de #menu-icon et de .material-icons, mais cela ne produit aucun effet:
/*** HEADER ***/
#header {
background: white;
color: $gray;
.logo {
max-width: 100%;
display: block;
margin: auto;
max-height: 55px;
margin-top:10px;
}
a {
color: #333;
@include transition(0.2s);
&:hover {
text-decoration: none;
color: $brand-primary;
}
}
.header-nav {
max-height: 50px;
margin-bottom: 0px;
font-size: rem(14px);
background: #fafafa;
border-bottom: 1px solid $border-color;
#menu-icon {
vertical-align: middle;
cursor: pointer;
width: rem(50px);
height: rem(50px);
background: $brand-primary;
.material-icons {
line-height: 50px;
color: $brand-primary;
}
}
Merci pour votre aide!