I tried: https://kriesi.at/support/topic/stick-socket-to-bottom-of-page/
But now the socket overlays the page content, it should stay at the bottom of page,
Hey wasim-ullah,
Please change your css from:
#socket {
position: fixed;
bottom: 0;
width: 100%;
z-index: 999;
}
to this:
@media only screen and (max-width: 767px) {
#socket {
position: fixed;
bottom: 0;
width: 100%;
z-index: 999;
}
}
After applying the css, Please clear your browser cache and check.
Best regards,
Mike
That did not work.
It only worked on a mobile device.
Basically, I want the footer to stay in bottom. Your code only adjusted it for mobile device, not in the bottom but it overlapped the content in mobile device.
Hi,
Did you add the code to the very top of quick css so it runs first? Also, clear the cache a few times over.
Best regards,
Jordan Shannon
Yes I did and it does not work the way I described above
I need the footer to stay in the bottom of the page but do not overlay on the content. Your code above does not do it
Hi,
Apologies but I’m not seeing any overlap on the desktop. Is there a specific page that I should be looking at?
Best regards,
Jordan Shannon
Hi Jordan,
The overlap is in the mobile screen, the desktop does not keep the socket in footer.
Hi wasim-ullah,
Can you try adding this CSS code:
.home #main .container_wrap_first {
min-height: 100vh;
}
Hope it helps.
Best regards,
Nikko
That solved the problem. Thank you
Hi,
I’m glad this was resolved. If you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon