In the HTML part of this menu:
Code:
<span id="textcontainer1" align="left" style="font:italic 13px Arial">
</span>
Use the inline style attribute of the span to control that. Best to set a background color as well (the user otherwise may see a different background color than you intend), ex:
Code:
<span id="textcontainer1" align="left" style="font:italic 13px Arial;color:white;background-color:black;">
</span>
You may use any valid HTML color names for the parts in green or hex values:
#0F0F0F
or rgb values:
rgb(100,100,075)
Bookmarks