Side_slide menu width
Hi guys,
I love the side_slide menu, especially the fact that it includes the site's social icons at the bottom.
(I believe that the standard mobile menu should do this to)
I have one issue though: my site is in italian, a language with long words, thus I need the menu to be wider.
Through CSS I successfully increased the width of the menu using:
html body #Side_slide {
width: 80%;
right: -80% !important;
}
then I planned to change its "right" value when the menu is activated, however I noticed that in scripts.js in rows 658-690 you directly animate the value of "right" via JS instead of adding/removing a class like 'active' or 'open' which has the animation.
Something like:
#Side_slide {
transition: right 0.3s;
width: 80%;
right: -80%;
}
#Side_slide.active {
right: 0;
}
I'd like to know if you guys are open to move to this approach in the future, or if there is a way for me to override this behavior for my website.
Thank you very much!
Comments
Something like: