<head runat="server"> ... existing stuff <style> #IdOfControl, .OrCssClass { color: white; font-size: 12pt; } #IdOfControl:hover, .OrCssClass:hover { color: white; font-weight: bold; } </style> </head>
or you can set the style directly on the control itself (although for links this is tricky because they have so many states (standard,hover,visited) and only the static mode is handled by direct style attributes).
<ww:wwWebHyperLink runat="server" id="IdOfControl" style="color: white; font-size: 12pt;" />
+++ Rick ---
from Maui, Hawaii