I want to attach the footer to the bottom of the page, only PRO

I want to attach the widget / footer to the bottom of the page
but only find the following code:

footer.x-colophon {
position: fixed;
width: 100%;
bottom: 0;
}

which makes it almost disappear, all the tips I find are just for X-PRO and I have chosen not to go over to it yet.

Best regards

Hi @olahollsten,

Try using this short JS to move the footer widgets to the bottom of the site.

(function($) {
    $('.site').append($('.x-colophon.top'));
})(jQuery);

Hope it works. If not please share to us the url of your site, so we can give you a more accurate solution. Thanks!

Not working, have sending a Secure note!

Hi @olahollsten,

Above CSS should make it fixed on the bottom. Can you clarify what you meant by it almost disappear?

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.