>> Unfortunately I can't wean all users off IE.
Sure you can - something like;
if p_web.agent = 'msie'
return ''
end
works wonders. Then 100% of your users will not be using IE.
ahh - but I think I see what you meant - you want to actually _keep_ the users.
if so, just increasing the min-width for the menu is likely a good approach;
In your custom.css file put;
.nt-menu > li > a{
min-width:1000px;
}
Obviously 1000px is too much, so you'll work it down to something reasonable, but I always start with something outrageous, then it's obvious the setting is at least being applied. (If you do the above, and nothing changes, then clearly you've missed a step - maybe need to run gzipall.bat etc.)
Cheers
Bruce