Reply To: Gradient over section

Home Forums Support Gradient over section Reply To: Gradient over section

Home Forums Support Gradient over section Reply To: Gradient over section

#155596
Tom
Lead Developer
Lead Developer

Hi Melody,

You could try this:

Add an empty HTML element to the section:

<div class="gradient"><!-- empty element --></div>

Then some CSS like this:

.gradient {
    background-image: url(URL TO YOUR GRADIENT IMAGE);
    background-repeat: repeat;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

Let me know if that helps or not 🙂