Hi Eric
Sorry, I thought that you were discussing the top menu.
The menu items do not change in FF. The styles are confusing.
You have:
HTML Code:
<td>
<div class="app">
<a name="1" href="http://ememi.com/cmw/recapp.shtml">
<b>APPETIZERS</b>
</a>
<br>
<b>Cheese</b>
<br>
<a class="ind" href="http://ememi.com/cmw/recapp.shtml">Crescent Brie and Almonds</a>
<style
type="
text/css">
/*<![CDATA[*/
a { font-size: 10pt; text-decoration: none;}
a:hover { color: #F4C508;}
a.n:hover { color: #FF0000;}
a.ind { display: inline-block; text-indent: 10px;}
body {}
td { color: #F4C508; font: 10pt "Comic Sans MS";}
b { font-weight: 600;}
a.app { color: #FF779B;}
a.bee { color: #CC3333;}
a.bre { color: #CC9966;}
a.cak { color: #D2691E;}
a.can { color: #931C09;}
a.chi { color: #FF0075;}
a.chu { color: #8B008B;}
a.coo { color: #960741;}
a.ice { color: #FF3366;}
a.jam { color: #C71585;}
a.pas { color: #1E90FF;}
a.pic { color: #00844A;}
a.pud { color: #D1765A;}
a.rel { color: #808000;}
a.sal { color: #006400;}
a.sau { color: #FF4A50;}
a.sea { color: #278E60;}
a.sou { color: #FF6347;}
a.sta { color: #D16347;}
a.veg { color: #148906;}
.app { color: #FF779B;}
.bee { color: #CC3333;}
.bre { color: #CC9966;}
.cak { color: #D2691E;}
.can { color: #931C09;}
.chi { color: #FF0075;}
.chu { color: #8B008B;}
.coo { color: #960741;}
.ice { color: #FF3366;}
.jam { color: #C71585;}
.pas { color: #1E90FF;}
.pic { color: #00844A;}
.pud { color: #D1765A;}
.rel { color: #808000;}
.sal { color: #006400;}
.sau { color: #FF4A50;}
.sea { color: #278E60;}
.sou { color: #FF6347;}
.sta { color: #D16346;}
.veg { color: #148906;}
.app a { color: #FF779B; line-height: 14pt;}
.sou a { color: #FF6347; line-height: 14pt;}
.sal a { color: #006400; line-height: 14pt;}
.sta a { color: #D16346; line-height: 14pt;}
.veg a { color: #148906; line-height: 14pt;}
.sau a { color: #FF4A50; line-height: 14pt;}
.pic a { color: #00844A; line-height: 14pt;}
.chu a { color: #8B008B; line-height: 14pt;}
.rel a { color: #808000; line-height: 14pt;}
.bee a { color: #CC3333; line-height: 14pt;}
.sea a { color: #278E60; line-height: 14pt;}
.chi a { color: #FF0075; line-height: 14pt;}
.bre a { color: #CC9966; line-height: 14pt;}
.pas a { color: #1E90FF; line-height: 14pt;}
.pud a { color: #D1765A; line-height: 14pt;}
.cak a { color: #D2691E; line-height: 14pt;}
.ice a { color: #FF3366; line-height: 14pt;}
.can a { color: #931C09; line-height: 14pt;}
.coo a { color: #960741; line-height: 14pt;}
.jam a { color: #C71585; line-height: 14pt;}
/*]]*/>
</style>
First you tell it:
a { font-size: 10pt; text-decoration: none;} <---- Set all links
a:hover { color: #F4C508;} <---- Set all links when hiovered over
then:
a.ind { display: inline-block; text-indent: 10px;} <---- Set all links of class 'ind'
and:
td { color: #F4C508; font: 10pt "Comic Sans MS";} <-- any children within this cell could inherit the color
and:
.app { color: #FF779B;} <---- set the color of class 'app'
and:
.app a { color: #FF779B; line-height: 14pt;} <--set the color for any links with the element that is set to class 'app'
That is 3 potential colors etc.,
Is this your old NS4 page Eric? Layers? - dead, decomposing, smelly, keep away from food. :)
Try:
a.ind:hover {color:#f4c508;}
Bookmarks