[Resolved] Use tiled image in sections

Home Forums Support [Resolved] Use tiled image in sections

Home Forums Support Use tiled image in sections

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #101530
    Susanne

    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.

    #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;
    }
    #101626
    Susanne

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

    #101682
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.