Hello, is there a way to add CSS shadow to text in the header of the page across all site? Or as an alternative option – dark overlay on top of header image – http://tylo.comadev.noc.lv/akvaparki/
Print screen – https://www.dropbox.com/s/4krje4i9nxh7kk8/shadow.JPG?dl=0
Hey vadikcoma,
This code adds the shadow, but it’s hard to see with some dark images:
.av-special-heading-h1 {text-shadow: 2px 2px #000!important; }
This code adds a background to the text:
.av-special-heading-h1 {background: rgba(0, 0, 0, 0.5)!important; }
Best regards,
Mike
Hi there,
Is there a way to add a shadow on the title only, not the subtitle ?
Best
Lex
Hi,
Try this code in the General Styling > Quick CSS field:
.av-special-heading-tag {background: rgba(0, 0, 0, 0.5)!important; }
Best regards,
Mike
Thank you, Mike!