Home › Forums › Support › transparent background color and bg image › Reply To: transparent background color and bg image
March 26, 2016 at 11:31 am
#181898
Lead Developer
Lead Developer
Like an overlay color over the image?
Not currently – there’s no method for adding an overlay colors over a background image in CSS.
It would require some extra CSS to be added like this (not sure if it will work, just a though):
.site-header:before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: red;
opacity: .6;
display: block;
}
.inside-header {
position: relative;
z-index: 1;
}
That assumes you’re use the site header and not the Page Header add-on.
-
This reply was modified 7 years, 6 months ago by
Tom.
-
This reply was modified 7 years, 6 months ago by
Tom.