Thanks! I can get all I need from the link you posted.
You will need to make new button images that are larger than the ones you
have there. There would be no way to affect the graphics you currently have
in any beneficial way with CSS. And, honestly, I'd ditch the interactive
buttons and just use simple image swaps (you'd just need two images for each
button: an up and an over image, and then swap between them), since the
interactive buttons are only supported in IE/Windows.
By the way, in your pseudo-class styles, you need to make the rules like
this -
A {
FONT-WEIGHT: bold;
FONT-FAMILY: sans-serif;
TEXT-DECORATION: none
}
A:link {
FONT-WEIGHT: bold;
FONT-FAMILY: sans-serif;
TEXT-DECORATION: none
}
A:visited {
FONT-WEIGHT: bold;
FONT-FAMILY: sans-serif;
TEXT-DECORATION: none
}
A:active {
FONT-WEIGHT: bold;
FONT-FAMILY: sans-serif;
TEXT-DECORATION: none
}
(i.e., link, then visited, then active)
But since they are all the same, just change it to this -
A {
FONT-WEIGHT: bold;
FONT-FAMILY: sans-serif;
TEXT-DECORATION: none
}
and it will affect them all.