Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @goclones1,

    Thanks for using Neve!

    The space you’re seeing between the slider and the footer is intentional behavior in Neve. When the slider’s height is not enough to fill the full viewport between the header and footer, the theme applies the following CSS to stretch the main content area and prevent an empty gap:

    .neve-main {
        flex: 1 auto;
    }
    

    If you’d like to disable this behavior, you can add the following to the Additional CSS field in Appearance > Customize:

    .neve-main {
        flex: unset;
    }
    

    Keep in mind that overriding this will likely result in empty space appearing below the footer instead, so the trade-off is where the gap shows up rather than removing it entirely.

    The cleanest fix would be one of the following:

    • Increase the height of the slider so it fills the full viewport height
    • Add another section below the slider to take up the remaining space

    Either of those approaches will give you a clean layout without any workarounds needed.

    Let me know if you have any questions!
    Best regards,

    Thread Starter goclones1

    (@goclones1)

    Thank you very much!

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

You must be logged in to reply to this topic.