Skip to main content
Question

Footer in the middle of the page

  • March 23, 2026
  • 1 reply
  • 17 views

On our portal, we have activated the new marketplace in preview but not in production as of yet. The footer that was already used in the old marketplace (UX) is still being used but in preview, it looks like it’s in the middle of the page. Is this only because it’s in preview or is a change needed to view properly in production?

1 reply

yier.wu
Community Manager
  • Community Manager
  • March 24, 2026

Hi Shawna, 
Thanks for this question.

We think this is due to the following code applied to the main element in your portal CSS stylesheet 
 

main {
...
    min-height: calc(100vh - 60px - 80px);
}

 

Do you know the purpose of this code?

Our recommendation is that if a calculated height needs to be enforced in a specific area, it would be better to apply a more specific class name to the relevant container rather than targeting the main element. The main element should keep its default behavior; otherwise, it can cause layout issues in different parts of the interface.

Yier