I have a table with the left cell as a nav. bar. the html code is:
<TR>
<TD class="sidelinks" HEIGHT="500" ALIGN="left" VALIGN="TOP">
<NOBR><A HREF="somatic.html" >Somatic Voicework™ <BR></A>
</NOBR>
<NOBR>
<A HREF="university.html" University Programs <BR></A>
</NOBR>
<A HREF="workshops.html" Workshops <BR></A>
<NOBR>
<A HREF="children.html" Children's Choruses <BR></A>
</NOBR>
<A HREF="consultations.html" Consultations <BR></A>
<NOBR>
<A HREF="corporate.html" Corporate Workshops <BR></A></NOBR>
<NOBR>
<A HREF="teacher.html" Teacher Training <BR></A>
</NOBR>
<A HREF="lovetri.html" LoVetri Bio <BR></A>
<A HREF="testimonials.html" Testimonials <BR></A>
<A HREF="videos.html" Articles and Videos <BR> </A>
</TD>
and the css is:
td.sidelinks a{
display: block;
border: 1.4px solid #006666;
border-color: #006666;
font-size: .85em;
}
td.sidelinks {
Background-color: #ff9966;
font-size: .85em;
}
I use the nobr tag to keep the link text on one line. I would like to replace the nobr tag in the html with a css one that has the same effect and that would work in Ie 5 and other main browsers.
Jerry