View Single Post
Old 03-30-2005, 02:17 PM  
Darkland
Confirmed User
 
Darkland's Avatar
 
Join Date: May 2002
Posts: 1,488
Well it doesn't really make sense what your trying to do, but here are your options.

1. If you want something simple in the body for links then it would simply be:
<body link="#0000FF" vlink="#66FF33" alink="#FF0000">

2. If it has to be CSS then you can either but this in your header or call to a css sheet:
<style>
a:link {color: #FF0000;
}

a:visited {color: #66FF33;
}

a:active {color: #0000FF;
}
</style>

The only real thing you can do as far as putting css in your body tag is to call to a particular element in the css by use of Class or Id selectors. I am by no means an expert and maybe someone else here knows more than I do and knows a better way to do it.

Best advice to you is go to a book store and pick up Cascading Style Sheets by O'Reilly. CSS is very easy to learn.
__________________


"The towers are gone now, reduced to bloody rubble, along with all hopes for Peace in Our Time, in the United States or any other country. Make no mistake about it: We are At War now -- with somebody -- and we will stay At War with that mysterious Enemy for the rest of our lives." H.S.T. 09/12/01
Darkland is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote