Disable text/image highlighting

AusQB

New Member
Is there a way to disable highlighting of elements? This isn't a crucial matter, but I feel it makes the site somewhat more stylish if, for example, you can't highlight the text on the nav buttons.
 

Logan

New Member
Just set your css like this:
a { color: #0000ff; text-decoration: none; }
a:hover { color: #0000ff; text-decoration: none; }

The link will still work, but it won't change when you mouseover it, you can set the same for a:active, and a:visited to complete the effect.

Personally, I find it's more user-friendly to give the user some indication that he's over the link...
 

AusQB

New Member
When I say highlighting, I don't mean hover. I mean when you drag your cursor over some text to highlight it.
 
Top