Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter Jonaker

    (@jonaker)

    Thank you for your reply.

    My problem is to find the right file to add the code eg I tried the field “Add Custom CSS Here:” but this took no effekt. …

    Theme Author Ben Sibley

    (@bensibley)

    Jonaker,

    Thanks for upgrading!

    Here is the CSS to allow your background image to repeat:

    .background-image {
      background-size: auto;
    }

    Currently, the background image stretches to fill the screen which is why it wasn’t repeating. Turning that off by setting the size to auto should make it automatically repeat itself.

    You can add the above CSS to the Custom CSS section in the Customizer.

    Thread Starter Jonaker

    (@jonaker)

    Thank you for your help 🙂

    I tried to add the CSS to the style-customizer.css but I see no result. …

    Theme Author Ben Sibley

    (@bensibley)

    You don’t need to edit any of the theme files. In the Customizer where you added the background image, there is also a section called “Custom CSS”. If you add the CSS there, it will work.

    Thread Starter Jonaker

    (@jonaker)

    It does not seem to work …

    Theme Author Ben Sibley

    (@bensibley)

    Oh I’m sorry, looks like the CSS isn’t “specific” enough.

    The following will work:

    .background-image {
      background-size: auto !important;
    }
    Thread Starter Jonaker

    (@jonaker)

    Thank you, that works fine 🙂

    Theme Author Ben Sibley

    (@bensibley)

    You’re welcome 🙂

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘Background Image does not repeat’ is closed to new replies.