Themeable menu problem

Issues related to hyperlinks and web site navigation.
Forum rules
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901

MUST READ:
http://www.wysiwygwebbuilder.com/links.html
Post Reply
gramae
 
 
Posts: 124
Joined: Thu May 24, 2012 1:47 am

Themeable menu problem

Post by gramae »

Hi, I am using themeable menu (jquery) on a site and notice on mouseover, the link is only selected when the cursor is directly over the link text on the button, but will not select the link if the rest of the button is highlighted.
Is this normal operation, is there a work around for this as there have been some complaints about the ease of useability of the site?
Thanks
User avatar
Pablo
 
Posts: 22162
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Themeable menu problem

Post by Pablo »

It seems to work correct for me.
Do you have a DEMO project?

For further details about how to share a project file, please see this FAQ:
viewtopic.php?f=10&t=82134
gramae
 
 
Posts: 124
Joined: Thu May 24, 2012 1:47 am

Re: Themeable menu problem

Post by gramae »

Hi
Yes it is used in this older site http://www.birdclubs.org.nz/
It seems to work ok on the first level but not the 2nd level
Thanks
User avatar
Pablo
 
Posts: 22162
Joined: Sun Mar 28, 2004 12:00 pm
Location: Europe
Contact:

Re: Themeable menu problem

Post by Pablo »

The jQuery UI menu (https://jqueryui.com) is pretty old so I am not sure if they will release any new updates in the future.

But you can try adding this code between the head tags of Page HTML:

Code: Select all

<style>
.ui-menu-item-wrapper a::after
{
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
   z-index: 1;
   pointer-events: auto;
   content: "";
   background-color: rgba(0,0,0,0);
}
</style>
gramae
 
 
Posts: 124
Joined: Thu May 24, 2012 1:47 am

Re: Themeable menu problem

Post by gramae »

That fixes the problem, many thanks.
Post Reply