Hi, it´s possible to hide the footer for smartphone only?
Thanks
Hey teotaban,
Thank you for the inquiry.
The following css code should hide the footer and socket on mobile view.
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
#footer,
#socket {
padding: 15px 0 30px 0;
z-index: 1;
display: none;
}
}
You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect.
Best regards,
Ismael
if you like to hide it only for real mobile devices ( and not for all small screens ) you can use that class – enfold added to the document ( html ) for mobile devices: avia_mobile
.responsive.avia_mobile #footer,
.responsive.avia_mobile #socket {
display: none;
}
and if you like to allow for “mobile Devices” with big screens tablets etc. (ipad…) use a combination of both.
@media only screen and (max-width: 767px) {
.responsive.avia_mobile #footer,
.responsive.avia_mobile #socket {
display: none;
}
}