CMS Development

dredgie
Teilnehmer/-in

Navigation "No Link" option

lösung

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 Akzeptierte Lösung
stefen
Lösung
Autorität | Partner
Autorität | Partner

Navigation "No Link" option

lösung

@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

Lösung in ursprünglichem Beitrag anzeigen

0 Upvotes
2 Antworten
stefen
Lösung
Autorität | Partner
Autorität | Partner

Navigation "No Link" option

lösung

@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
Teilnehmer/-in

Navigation "No Link" option

lösung

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

 

Much appreciated!

0 Upvotes