danst0 wrote:* Ipad: Since there is no hover I have problems to navigate through the whole categories menu. Is it somehow possible to use the first click on an item as a hover event and the second click as real click?
Even if so, it would probably interfere with other touch screen gestures like double tap to zoom in. There are ideas to replace menus with select elements (using JS) on touch screen devices, but I'm not sure this would be easy to pull of for a nested ul used for a dropdown menu. Also potentially without any fallback for device without JS support. Then again, I'm not a JS guru.
http://css-tricks.com/13303-convert-menu-to-dropdown/danst0 wrote:a) I made a css mistake and / or it could be fixed somehow in the style.css
Depends. Could you post just the CSS used for the dropdown menu?
danst0 wrote:b) Is it possible to have two alternative sites for IE and for browsers? So that if someone with IE surfs by I get the old sidebar categories menu and if a browser surfs by the CSS Dropdown is presented? But how / where could I differentiate between the browsers?
It is possible using rather horrible hacks like using conditional comments to emit different HTML, but I don't think it's worth the effort for a single browser.
YL