Forum Moderators: open
Either use this code inline:
<a href="#" style="cursor:default;">Test</a>
Or use this code in your head:
<style type="text/css">
a { cursor:default; }
</style>
Or better yet, add the ID of the parent element of your list so that only those links use a default cursor, like so:
<style type="text/css">
#theIDoftheList a
{
cursor:default;
}
</style>