In the link below, the header area turns white when the browser is shrunk, but I would like it to stay semi-transparent white all the time.
This css works, but fails when the browser width changes:
.header_bg{
opacity: 0.3;
}
Hi koala!
Try adding an override rule to it.
.header_bg { opacity: 0.3 !important; }
Cheers!
Elliott
that worked great!