Hello, I am using header number 7, and I am attempting to change the opacity of the background color of the menu section, but the code I am using is not working. Thank you! I also tried putting the code directly into the child theme instead of adding to custom css in theme options panel.
I tried adding the code below to custom css, and I also tried the same class selector, but used rgb color with 85 for background color transparency instead of using hex with opacity.
.header-type-7{
.menu-wrapper{
background-color: #000000;
opacity:.85;
}
I found this in the theme’s stylesheet
.header-type-7{
.menu-wrapper{
background-color: #252525;
border:none;
.menu{
>li{
>a{
color: #ffffff;
border-color:#393939 !important;
&:hover{
color: @mainColor;
}
}
}
}
}
}