Tagged: header, transparency
There appears to be a bar that is only a little opaque behind the links. I would like to make it show up more prominently, so if I have slideshow images that are a mixture of dark and light… it would still show up as well. I have tried this code:
.header_color .header_bg{
background-color: rgba(255,255,255,0.5);
}
with no results…
Any insight would be appreciated. Thanks!
Hey trecacreative!
Your talking about the header background? Your code is being applied on your site correctly. If you want to make it more opaque then you need to increase the last value like so.
.header_color .header_bg {
background-color: rgba(255, 255, 255, 0.9);
}
Best regards,
Elliott