How to make a sticky footer?

I created a footer, but I need it to appear on all (symbol) pages at the very end of the body. How can I do it?

Manually it is impossible. Since the body size of each page is different, and the footer is a symbol, it is displayed only in one position.

Endless solution. The most famous way. Add extra wrapper for the content and give for this wrapper min-height of 100vh. Result:

-nav symbol
-warpper (with min-height 100vh) (in all screens)
-footer symbol

or by flexbox (old video but the idea is the same in the new ui):

related:

1 Like

I was having the same issue & flexbox, like Siton_Systems suggested, sorted it!