From the demo:
Code:
<a href="default.htm" style="font-size:1.5em;" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu1, '150px')" onMouseout="delayhidemenu()">Web Design</a>
You could also give each anchor tag a class name of say, anyAnchor:
Code:
<a href="default.htm" class="anyAnchor" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu1, '150px')" onMouseout="delayhidemenu()">Web Design</a>
then add to the style section:
Code:
a.anyAnchor {
font-size:1.7em;
}
This is the preferred method.
Bookmarks