how to delete toggle class for small screens?
firat131 opened this issue · 4 comments
firat131 commented
This sidebar is very nice, thanks, but not mobile compatible. how to delete toggle class for small screens?
azouaoui-med commented
The sidebar should work just fine in mobile device ... if you can provide more details about the problem you got it will be helpful to understand the issue.
Note: the sidebar position changes in small screen from absolute
to fixed
, to make it overlap on the page-content elements
firat131 commented
azouaoui-med commented
You can check the size of the window when loading the page and remove the toggled class from page-wrapper
This code should do the trick:
if ($( window ).width() <= 767){
$(".page-wrapper").removeClass("toggled");
}
firat131 commented
Thank you very much for your quick response and help.