Issue: It would be nice to be able to adjust the placement of the top of the menu (vertically).
You should be able do it with CSS - Try;
Code:
#togglemenu1 { top:5em !important }
Suggestion 1: Include a parameter (if possible) that would allow for all secondary level <ul>'s to close when another <ul> is opened. This capability is included in the Glossy Accordion Menu.
From a UX standpoint, on small screen devices this isn't usually a desirable behaviour. Imagine opening a large sub-menu and scrolling to the bottom, only to close it and have the menu contract; pulling the screen up with it and landing you in the middle of the page. It could be rather disorientating. That might be the reason for DDadmin's setup - although maybe it could be added as a desktop feature? Although for consistency across devices, one easily learnt and recognisable behaviour is usually best. DDadmin can hopefully provide his thoughts on that when he has time.
Suggestion 2: Include a parameter (if possible) that would allow for a hover image for the down arrow.
How about doing something with CSS? You could put a background colour on the arrow, and extend it a little way with a border. Something like this;
Code:
.sidetogglemenu a img.downarrow { background:#fff; border:3px solid #fff; border-radius:50% }
You could change the colour on hover;
Code:
.sidetogglemenu a:hover img.downarrow { background:yellow; border:3px solid yellow }
Or you could use an image with a contrasting background colour to begin with.
Bookmarks