I don't think so, but here are the CSS attrributes affecting this particular menu:
Code:
.anylinkmenu{
border-left:1px solid black; border-right:1px solid black; border-top:1px solid black; border-bottom:0px solid black; position: absolute;
left: 0;
top: 0;
visibility: hidden;
line-height: 18px;
z-index: 100; /* zIndex should be greater than that of shadow's below */
background: #FFFFFF;
width: 200px
}
.anylinkmenu ul{
margin: 0;
padding: 0;
list-style-type: none;
}
.anylinkmenu ul li a{
width: 100%;
display: block;
text-indent: 3px;
border-bottom: 1px solid black;
padding: 2px 0;
font-size: 8pt;
font-family: Verdana, Arial, Helvetica, Sans-Serif;
color: #FF0000;
text-decoration: none;
font-weight: normal;
text-indent: 5px;
}
.anylinkmenu a:hover{ /*hover background color*/
background: #CDCDCD;
font-size: 8pt;
font-family: Verdana, Arial, Helvetica, Sans-Serif;
color: #000099;
}
and here is the entire menucontents.js contents:
Code:
var anylinkmenu1={divclass:'anylinkmenu', inlinestyle:'', linktarget:''}
anylinkmenu1.items=[
["Bulletin/Newsletter Inserts", "Stewardship.htm"],
["Stewardship", "Stewardship.htm"],
["Co-Responsabilidad", "Coresponsabilidad.htm"],
["¡en español!", "CoresponsabilidadSpanish.htm"],
["Graceful Generosity", "Stewardship.htm#gracgen"],
["The Stewardship Toolkit", "buildgracgen.htm"] //no comma following last entry!
]
var anylinkmenu2={divclass:'anylinkmenu', inlinestyle:'', linktarget:''}
anylinkmenu2.items=[
["Complete Response Programs", "programs.htm"],
["Bible Studies", "biblestudies.htm"],
["Devotionals", "devotionals.htm"],
["Tri-fold Brochures", "trifolds.htm"] //no comma following last entry!
]
var anylinkmenu3={divclass:'anylinkmenu', inlinestyle:'', linktarget:''}
anylinkmenu3.items=[
["Stewardship Sermons", "stwsermons.htm"],
["Personal Financial Stewardship", "moneymatters.htm"],
["Youth Stewardship", "youthstw.htm"],
["Stewardship Sourcebook", "CoresponsabilidadSpanish.htm"] //no comma following last entry!
]
var anylinkmenu4={divclass:'anylinkmenu1', inlinestyle:'', linktarget:''}
anylinkmenu4.items=[
["Proclaim Sermons", "http://www.parishpublishing.org/proclaimsermons.default.asp"],
["Stewardship Sermons", "stwsermons.htm"] //no comma following last entry!
]
and here is the html on the page that generates the menu:
Code:
<tr>
<td align="right"><a class="menuanchorclass" rel="anylinkmenu1" rev="lr"><span class="quote">On-Going Inspiration</span></a></td>
</tr>
<tr>
<td align="right"><a class="menuanchorclass" rel="anylinkmenu2" rev="lr"><span CLASS="quote">Focus on Commitment</span></a></td>
</tr>
<tr>
<td align="right"><a class="menuanchorclass" rel="anylinkmenu3" rev="lr"><span CLASS="quote">Other Resources</span></a></td>
</tr>
<tr>
<td align="right"><a href="digitalproducts.htm"><span CLASS="quote">Downloadable Materials</span></a></td>
</tr>
<tr>
<td align="center">
<hr color="#A08461" size="1">
<a class="menuanchorclass" rel="anylinkmenu4" rev="lr"><span CLASS="pageheader10">Preaching Resources</span></a>
</td>
</tr>
And here is a link to the result:
Code:
http://www.parishpublishing.org/teststwsermons1.htm
If you navigatge the menu, you will see that the CSS of the menu item labels is not consistent...but should be. ???????
Bookmarks