<em>@acanadasa 254623 wrote:</em><blockquote>Hi,
On mouse over, menus set up as “separators” (not including any link at all) turn pointer cursor into hand cursor. Obviously, when clicking, they lead to nowhere, but this makes navigation confusing.
Is there any way to stop displaying the hand cursor over separator menus?
Thank you!</blockquote>
hi acanadasa,
if you want to stop pointer cursor for a menu item when mouse over it you can try as following
1) Go to the menu item setting in your back-end >> Parameters (JA Extended) panel here you enter a class suffix into the field of Additional class example you enter test
2) Open the file of templatesja_minisitecsstemplate.css and adding this css
a.test{
cursor:auto !important;
}
a.test span.menu-title{
cursor:auto !important;
}
I hope that make sense !