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

In Microsoft Edge and Internet Explorer sidebar appears on new page

fabio7 opened this issue · comments

Beautiful template, but in Microsoft Edge and Internet Explorer the menu slide from the left everytime you click on a new page... (sorry for my english, I hope I'm clear)

ok, 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;
    }
[...]
}