effpeetee
10-12-2007, 12:27 PM
Can I get the menu option to enlarge** on hover to enable poorly sighted people to read the selection before actually clicking on it?:D
URL in my signature.
Frank
** Just show the print in the menu larger.
felgall
10-12-2007, 12:31 PM
a:hover {font-size : 400%;}
effpeetee
10-12-2007, 12:42 PM
a:hover {
font-size : 400%;
color: #FF0000;
background-color: inherit;
}
Stephen. I have modified as above yet it does not seem to work.
Frank
felgall
10-12-2007, 12:59 PM
Is the menu entry actually in an <a> tag? If not then you need to substitute whatever tag that it actually is in for the a on the front (and then it will not work in IE6 which only supports hover on <a> tags.
effpeetee
10-12-2007, 01:15 PM
Thanks. Moving it to #links ul a: works fine.
Frank