So I have an orange glow on my image which I would like everywhere except inside the bottom div which contains a title.
Shortened version of how it's build up
<div class="navbar-header"> <!-- Has a background image in css which is the base image -->
<div class="glow-orange"> <!-- Has a background color: rgba(247, 147, 29, 0.4) -->
<div class="title"> <!-- Is being positioned bottom in the middle -->
Title
</div>
</div>
</div>
Here's a really simple image for the visualization of this setup. Blue would be my image with the glow. They grey bar is transparent. I want the part of th image behind the grey bar to be the original color of the image instead of the orange glow.
Thanks in advance.
P.S. I'm using the bootstrap framework incase that might have some features that makes this easier / doable.