• I currently am running the Hestia theme and I am able to set background images for all of the front page sections individually – but I am having an issue with all of the images not being centered & positioned properly, but instead are zoomed in and cutting a lot of the image off.

    For instance the Sign up for our Newsletter section – the background image is completely cut off?

    What is the code to fix this?

    Thank you.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • in your css below line of code is cause of your problem
    /* background-size: cover; */
    so remove that line which I have commented in code.This will solve your problem and let me know If you find problem after this.

    .header-filter {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -1;
        background-position: center center;
        /* background-size: cover; */
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Frontpage section backgrounds are zoomed in’ is closed to new replies.