Hi experts, I would like to change the background for my website's masthead, but the background is always overwritten by a dark color. Could you please help. Thank you very much
Hi ecuopha
add to your custom.css
.ja-masthead:before { background-color:transparent; }
Hi
This above doesnt work for some reason. I managed to change it with the code below and I also needed the opacity changed.
div.ja-masthead::before {
background-color:#000; opacity: 0.5;
}
nimeshin You can try to change the color or opacity with !important:
div.ja-masthead::before { opacity: 0.5 !important; background-color: transparent !important; }