HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.

Modification to have the panel menu on the right side

I've read a few times that touch menus should be placed on the right, because the majority of people are using phones with the right hand.

If you are using this theme and would prefer the panel to be on the right side, you can add this to the end of the custom.css:

#Panel {
    left: auto;
    right: -310px;
    border-left: 1px solid rgba(0,0,0,.4);
    transition: right .3s;
    z-index: 202;
}
body.HamburgerOpen #Panel, a.Hamburger {
    left: auto;
    right: 0;
}
body.HamburgerOpen #Frame {
    margin: 0 0 0 -300px;
}
a.Hamburger {
    border-left: none;
    transition: right .3s;
}
body.HamburgerOpen a.Hamburger {
    left: auto;
    right: 300px;
}
body > #Frame > .Head {
    padding-left: 3px;
    margin-left: 0;
}
Sign In or Register to comment.