I would like to know how to remove the default white background behind each section. I can't seem to locate where this is controlled. I want to use some opacity to overlap the sections a bit and have the background images barely show through but because the sections have a white background, the opacity doesn't always display as it should.
Thank you.
Hi,
Please remove all class in
<div class="section-wrap bg-pattern-default ...">
to <div class="section-wrap">
To add overlay. For ex, in
<section id="our-flower" class="our-flower section">
please add tag <div class="overlay-color"></div>
Ex: if you want the color for overlay is rgba(0,0,0,0.5)
<section id="our-flower" class="our-flower section">
<div class="overlay-color" style="background-color: rgba(0,0,0,0.5)"></div>
..........
..............
</section>