Im trying to create a fixed footer with this css in theme options
footer.x-colophon {
position: fixed;
width: 100%;
bottom: 0;
}
But also make fixed the footer at the bottom in desktop version … i need only for mobile version
Thanks in advance
Im trying to create a fixed footer with this css in theme options
footer.x-colophon {
position: fixed;
width: 100%;
bottom: 0;
}
But also make fixed the footer at the bottom in desktop version … i need only for mobile version
Thanks in advance
Hello Alver,
Try wrapping the code in a media query so that it will only take effect on mobile:
@media (max-width: 480px) {
footer.x-colophon {
position: fixed;
width: 100%;
bottom: 0;
}
}
Hope this helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.