CMS Development

dredgie
Participant

Navigation "No Link" option

SOLVE

Hello - I've built a menu with the top layer options having "No Link", yet when I roll the mouse over the option, it still changes from an arrow to a hand and highlights as if the option is an active link. Does anyone know why?

 

Thanks!

 

Simon.

0 Upvotes
1 Accepted solution
stefen
Solution
Key Advisor | Partner
Key Advisor | Partner

Navigation "No Link" option

SOLVE

@dredgie in your stylesheet you could add the following to fix the issue:

a[href="javascript:;"] {
    cursor: default;
}
Stefen Phelps, Community Champion, Kelp Web Developer

View solution in original post

0 Upvotes
2 Replies 2
stefen
Solution
Key Advisor | Partner
Key Advisor | Partner

Navigation "No Link" option

SOLVE

@dredgie in your stylesheet you could add the following to fix the issue:

a[href="javascript:;"] {
    cursor: default;
}
Stefen Phelps, Community Champion, Kelp Web Developer
0 Upvotes
dredgie
Participant

Navigation "No Link" option

SOLVE

Thanks, @stefen - I will give that a shot.

 

Much appreciated!

0 Upvotes