I already had the font settings in the root of the class in the css file as follows. The colors work as shown, but the type is displaying as times roman 12pt normal. Can't find the cause of that, but as Nina said, maybe something else is wrong that's making it go back to the default. But what?
Here's the table that's killing me shown here with an extra table inside the menu cell hoping that would fix it:
<TABLE class="menubar" cellSpacing="0" cellPadding="0" border="0" width="100%">
<tr>
<TD>
<table cellSpacing="0" border="0" width="100%" border-collapse="collapse">
<tr>
<td valign="top" margin-bottom="10px" align="left" width="1000%" nowrap> [SOLPARTMENU]</TD>
<tr>
</table>
</TD>
<TD vAlign="middle" padding-bottom="2px" align="right" nowrap><span class="breadcrumb"><B>..::</B> [BREADCRUMB] <B>::..</B></span></TD>
<TD vAlign="middle" align="right" nowrap><span class="SrchLink" id="Srch">[SEARCH]</span></td>
</TD>
</tr>
</TR>
</TABLE>
Here's the CSS code I used to fix the SEARCH text problem, modified from the code Gilbert kindly posted,
.SrchLink
{
font-family: Tahoma, arial, sans-serif;
font-weight: bold;
color: #4e4634;
white-space: nowrap;
text-decoration: none;
}
a.SrchLink:link, a.SrchLink:visited
{
color: white;
}
a.SrchLink:hover
{
cursor: pointer;
cursor: hand;
color: #0000ff;
text-decoration: none;
}
a.SrchLink:active, a.SrchLink:focus
{
color: white;
text-decoration: none;
}
a.SrchLink:active:hover
{
cursor: pointer;
cursor: hand;
color: #0000ff;
text-decoration: none;
}
#Srch .NormalTextbox
{
padding-top: 0px;
background: white;
color: white;
font-family: tahoma, arial, sans-serif;
font-size: 10px;
font-weight: normal;
vertical-align: middle;
}
Here's the XML code I used. I had to take out the "submit" part because it caused errors and I couldn't figure out what it was supposed to be doing and how to make it work right.
<Token>[SEARCH]</Token>
<Settings>
<Setting>
<Name>CssClass</Name>
<Value>SrchLink</Value>
</Setting>
</Settings>
I also tried putting a table inside the cell that holds the menu, as suggested (shown that way here.) It made no difference whatsover...the menu is *glued* to the bottom of the table cell no matter what I do. The other cells in the row I can adjust the vertical position with padding, valign, and vertical-align commands. But the menu is SUPERglued! *!&%^
If anyone can look at this code and tell me why the text is displaying wrong (word SEARCH) and why the solpartmenu won't line up right I'd will be eternally greatful!
~Bee