Mobile - remove topbar

Hi,

Is it possible to remove this top-bar only from the mobile phone?
See attachment.

Carla

Hi @CarlavandenOuweland,

Thanks for writing in, and yes, it’s possible. Please add this CSS to your global custom CSS.

@media ( max-width: 767px ) {
.x-topbar {
display: none !important;
}
} 

Hope this helps.

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.