• Resolved catwingz

    (@catwingz)


    I am trying to choose a background image for the site and I’m running into a problem. The image is currently set to tile and be in the left position. I have tried other settings but the results are the same. The image is a small repeatable pattern and instead of repeating it looks like the single tile is being blown up to cover the entire background.

    This is the dev site you can’t see, so here is the screenshot of the page with the blown up image. And, just so you can see the difference, this is what it really looks like.

    What is going wrong, and how can I fix it?
    Thank you!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Shaped Pixels

    (@shaped-pixels)

    You know what…I did that as a test and forgot to change that into an actual theme option setting, so that is my fault. This is what is doing it:

    /* this will make image cover the window area at all resolutions */
    body.custom-background {
    	background-size:cover;
    }

    IF you do this as custom CSS, it should solve that until the next theme update:

    body.custom-background {
        background-size: auto;
    }
    Thread Starter catwingz

    (@catwingz)

    Perfect.
    This is what it looks like now.

    Thanks for being there

    Theme Author Shaped Pixels

    (@shaped-pixels)

    No worries, even though it was my goof up on the code 🙂
    Cheers!

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

The topic ‘Background image blowing up’ is closed to new replies.