StartBootstrap / startbootstrap-simple-sidebar

An off canvas sidebar navigation Bootstrap HTML template created by Start Bootstrap

Home Page:https://startbootstrap.com/template/simple-sidebar/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sidebar Reloading Issue

kswebteam opened this issue · comments

Thank for for this! This works great for one of my projects. The one thing that I noticed is that when I have my website on Chrome, the sidebar will stay open page to page. But in Internet explorer, the sidebar will reanimate from closed to open. It's as if it's taking longer to load the javascript or something.

Is there a way I can make the sidebar not reanimate (slide) to open when I go page to page in Internet Explorer?

I had the same problem, if you still need I solved by removing the transition effects on desktop:

@media(min-width:768px) {
    #wrapper {
        padding-left: 250px;
        -webkit-transition: none;
        transition: none;
    }
[...]
    #sidebar-wrapper {
        width: 250px;
        -webkit-transition: none;
        transition: none;
    }
[...]
}

Keep in mind that removing the transition on desktops will remove the transition when the toggle button is pressed as well on desktops. I will have to explore some more permanent solutions to this when I have some time, but if anyone has any ideas feel free to share them!

It's true. I forgot to mention that I had disabled the toggle button on desktop, because it didn't serve for my purposes