Good day! How can i make the scrolling bar disappear from my header when i am on mobile? I want the menu to scroll but i dont want the bar to show. Thank for your help!
Good day! How can i make the scrolling bar disappear from my header when i am on mobile? I want the menu to scroll but i dont want the bar to show. Thank for your help!
Hi Carp,
Thanks for reaching out.
Sure, please add this CSS to your header bar’s Element CSS
@media ( max-width: 979px ) {
$el [class^="ps__rail"] {
display: none !important;
}
}

Cheers!
Thank you very much, Sir!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.