I am starting to create a website and I am trying to achieve this effect:
How do I add a dark overlay on top off my fullscreen slider like the above website?
That way my text is easier to see.
Can I get some help?
Also take note that a lot of other themes have this as a built in option
See: http://theme.co/x/demo/integrity/7/
http://themeforest.unitedthemes.com/wpversions/brooklyn/basic/
http://themenectar.com/demo/salient-frostwave/
http://artbees.net/themes/jupiter/
Maybe it would be a good idea to add it in a future update.
But for now can i get help on how to do it?
Hey!
Try adding this to your custom CSS.
.caption_fullwidth { background: rgba(0,0,0,.4) !important; }
Cheers!
Elliott
Hi Elliott,
Thanks for your help!
How can I achieve this with a background image?
Thank You,
Isaac
Hey!
Try with this:
#av_section_1:after {
content: "";
position: absolute;
width: 100%;
height: 100%;
top: 0;
background: rgba(0,0,0,.4) !important;
}
Best regards,
Josue