I want the inline --COLOR="#000000"-- tag to define the colour of all the text including the links.

Is there any way of using css ( or any other method ) to switch off the purple/blue underlined style. I know I can use

A { text-decoration: none}

to switch off underlining but I want to switch off the colours as well.

Any ideas..??

    A:link {COLOR: #000000; TEXT-DECORATION:none;}
    A:visited {COLOR: #000000; TEXT-DECORATION:none;}
    A:active {COLOR: #FFFFFF; TEXT-DECORATION:none;}
    A:hover {COLOR: #FFFFFF; TEXT-DECORATION:none;}
    a {font-family: "Courier New", Courier, monospace; font-size:12px;}

      That just sets the links to black and the hover to white... I want it so it the the link colour is the same as the other text colour in the body no matter what that is..

      get what I mean??

      Cris

        You could either change the color of the links within css to your body text color, or do this:
        <body text="#000000" link="#000000" vlink="#000000" alink="#000000">

          I disagree.

          This is the bare minimum I would consider:

          <style>
          body { font-family: Tahoma; font-size:10pt; color: #0000ffF;
          scrollbar-arrow-color: #000000; scrollbar-track-color: #F6F6F6; scrollbar-face-color: #f8f8f8; scrollbar-highlight-color: #FcFcFc;
          scrollbar-3dlight-color: #FeFeFe; scrollbar-darkshadow-color: #F4F4F4; scrollbar-shadow-color: #F5F5F5 }

          form.thin {margin-bottom: 0px; margin-top: 0px;}
          IMG { border: 0; }
          TEXTAREA { behavior: url(/php/inc/behaviors/maxlength.htc) }

          </style>

          Source: promethyl.net

            Write a Reply...