Move off canvas menu to the left

Support desk for Multipurpose Quark Theme
GK User
Wed Dec 02, 2015 3:54 pm
Can someone help how to move the off canvas menu from the right to the left?
It means not moving only the symbol of the menu to the left, but also after clicking over off-canvas menu,
the menu to appear on the left, not on the right.
(Quark template)
Thank you,
User avatar
Fresh Boarder

GK User
Wed Dec 02, 2015 7:43 pm
Just some ideas:
Code: Select all
#gkBg.menu-open {
  margin-left: -280px;
}

should be positive,
Code: Select all
#aside-menu {
    right: 0;
}

should be set to:
Code: Select all
left :0

and right to initial, and finally:
Code: Select all
#close-menu.menu-open {
    opacity: 1.0;
    right: 18px;
}

should be moved to the left:
Code: Select all
#close-menu.menu-open {
 right: initial;
 left: 260px;
}


you can try this in override.css and work the rest.
User avatar
Moderator

GK User
Thu Dec 03, 2015 12:44 pm
Thank you Sir !
Was exactly what i needed.
User avatar
Fresh Boarder

GK User
Sun Dec 06, 2015 9:53 pm
Is there anything else I can help you with regarding this topic?
User avatar
Moderator


cron