Can I remove the guide footer for mobile devices only? | Community
Skip to main content

Can I remove the guide footer for mobile devices only?

  • September 3, 2021
  • 2 replies
  • 0 views

Ad17

Is it possible to remove the footer for our help center when viewing it from a mobile device?

2 replies

Ifra
  • September 4, 2021

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.

 

Team

 

 


Ad17
  • Author
  • September 7, 2021

Thank you!