Site logo

Archived topic

Use tiled image in sections

3 replies · Started by Susanne on April 23, 2015

Viewing posts 1–4 of 4

Love this theme and the add ons.
I want to use a tiled image instead of a large image for a background image in sections. There does not seem to be an option for that and I cannot override the CSS in my child theme. I tried

#generate-section-2  .generate-sections-container {
    background-size: tile;
}

But no go.

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;
}

perfect! Worked like a charm! Thank you so much for your prompt reply!

You're welcome :)

This archived topic is closed to new replies.