Can I remove the guide footer for mobile devices only?
BeantwortetIs it possible to remove the footer for our help center when viewing it from a mobile device?
-
Hi @Melody Quinn, you can use media query for this.
@media (max-width: 480px){
.footer { display: none }
}
the class footer can be different of your theme so you can change it i.e., footer-wrapper, main-footer, etc.. I'm using default Copenhagen so I fiund footer class name.
-
Thank you!
Bitte melden Sie sich an, um einen Kommentar zu hinterlassen.
2 Kommentare