Site logo

Archived topic

Search results pages with no found term

3 replies · Started by johnaps on February 27, 2020

Viewing posts 1–4 of 4

Hello, as you can see in the page bellow, i have problem with the with the padding of the body on search results pages that havent found the term that was searched and i have visible space under the footer, because my body has low height...
Is there any way to fix this?
Thank you in advance!

Hi there,

Not sure I'm seeing any padding issues, but the second issue is just how HTML works - the container is only as tall as its content.

You can adjust it like this:

@media (min-width: 769px) {
    #page {
        min-height: calc(100vh - 400px); /* 400px is the approx. height of your header and footer. */
    }
}

Perfect as always!! :)

Thank you Tom!

You're welcome :)

This archived topic is closed to new replies.