Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Changing a forecolor in htc

Status
Not open for further replies.

pixel69

Technical User
Sep 25, 2002
56
ZA
I'm using a CRM style webmenu and need to change the text color on hover. Currently i've got:

switch (o.className)
{
case "mnuSpacer": case "mnubar": case "mnuList": case "icMenu mnuRight": case "icMenu": return;
case "menu": case "button":

out();

if (!_capture)
{
with (o.runtimeStyle)
{
borderColor = "#597999";
backgroundColor = "#E0E7ED";
}
}
else if (o != _o.parentElement)
{
with (o.runtimeStyle)
{
borderColor = "#597999";
backgroundColor = "#E0E7ED";
}
clean();
down();
}
_oTopOn = o;
break;
default:

Please help....

pixel
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top