Reply To: Use tiled image in sections

Home Forums Support Use tiled image in sections Reply To: Use tiled image in sections

Home Forums Support Use tiled image in sections Reply To: Use tiled image in sections

#101569
Tom
Lead Developer
Lead Developer

Give this a go:

.generate-sections-container {
    background-repeat: repeat;
    background-size: auto auto;
}

If you want to only do it on a specific section, give that section a custom class, and then do this:

.generate-sections-container.my-custom-class {
    background-repeat: repeat;
    background-size: auto auto;
}