View Full Version : html code fragment/publisher 02


vicary
05-05-2003, 12:52 AM
Can someone help me with this html code fragment?
I am trying to get my navigation bar (code fragment below) to show the text as colored, but it isn't working for me when I add the font color in. Can someone view this and help me?
I can post the sample site I am trying to get this working on.
Here it is:
http://www.vicarybiznis.com/samplesite.htm
Here is my code fragment:
<table border="0" width="175" cellspacing="0" cellpadding="0"><FONT FACE="verdana"><FONT SIZE="2"><color="#000000">
<tr>
<a class="mnu" href="index.htm">Home Page</a><br>
<a class="mnu" href="faq.htm">FAQ</a><br>
<a class="mnu" href="bc.htm">Business Card Samples</a><br>
<a class="mnu" href="monologo.htm">Monograms/Logos</a><br>
<a class="mnu" href="smbus.htm">Small Businesses</a><br>
<a class="mnu" href="payments.htm">Payments</a><br>
<a class="mnu" href="contact.htm">Contact</a><br>
<a class="mnu" href="pricing.htm">Pricing Page</a><br>
<a class="mnu" href="letterheads.htm">Letterhead Costs</a><br>
<a class="mnu" href="envelopes.htm">Envelope Costs</a><br>
<a class="mnu" href="bccosts.htm">Business Card Costs</a><br>
<a class="mnu" href="bcdesigns1.htm">Business Card Designs 1</a><br>
<a class="mnu" href="bcdesigns2.htm">Business Card Designs 2</a><br>
<a class="mnu" href="bcdesigns3.htm">Business Card Designs 3</a><br>
<a class="mnu" href="packages.htm">Package Pricing</a><br>
<a class="mnu" href="mlpricing.htm">Monogram/Logo Pricing </a><br>
<a class="mnu" href="paperstocks.htm">Paper Stocks/Colors</a><br>
<a class="mnu" href="linen.htm">Royal Linen</a><br>
<a class="mnu" href="laid.htm">Royal Laid</a><br>
<a class="mnu" href="silk.htm">Royal Silk</a><br>
<a class="mnu" href="fiber.htm">Royal Fiber</a><br>
<a class="mnu" href="astrobrights.htm">Astrobrights</a><br>
<a class="mnu" href="astroparche.htm">Astroparche</a><br>
<a class="mnu" href="adddesigns.htm">Additional Designs</a><br>
<a class="mnu" target="_new" href="http://www.kconline.com">KConline</a><br>
<a class="mnu" target="_new" href="http://www.hummingbirdhosting.com/">Hummingbird Hosting</a><br>
<a class="mnu" target="_new" href="http://www.000domains.com">000domains</a></td>
</tr>

</tr>
</table>
</td>
</tr>
</table>

I am not sure if listing the code fragment here will work since this forum allows html. Hope it works, if not maybe you could somehow view the source code.

Any help with this would be so greatly appreciated.

vicary
05-05-2003, 01:02 AM
that my links are the standard blue as for hyperlinks.
I want the all the text to be black and if possible, to have a 'rollover' effect added in the code fragment. Is any of this possible using the fragment i have? I know that if I insert a CSS fragment into my html fragment box, it works, but I can't get the color to work for the links.
Such as adding this:
<style type="text/css">
a {
text-decoration: none;
}
</style>

thanks in advance!
Vicary

Cherchezlafemme
05-05-2003, 02:00 AM
Insert this:

<style type="text/css">
<!--

A:link
{ text-decoration: value [none]; color:#000000 }
A:visited
{ text-decoration: value [none]; color:#000000 }
A:active
{ text-decoration: value [none]; color:#000000 }
A:hover
{ text-decoration: value [none]; color:#000000;

Dude128
05-05-2003, 03:59 AM
you might want to use correct code, though:

<style type="text/css">
<!--

A:link
{ text-decoration: none; color:#000000; }
A:visited
{ text-decoration: none; color:#000000; }
A:active
{ text-decoration: none; color:#000000; }
A:hover
{ text-decoration: none; color:#000000; }