Can I remove the guide footer for mobile devices only?
AnsweredIs 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!
Please sign in to leave a comment.
2 Comments