a, a:visited
{ text-decoration:none;
color:#000000;
}
Put that at the top (or just in your CSS if you know where/what that is) and all your links will have no underline and you can replace the color with whatever you want. (#000000 is black).
If you manage all your different text styles with Cascading Style Sheets (you should), it’s pretty easy. Create a link style that overrides the underlining that links default to, and sets the color the same as the other text. First the “body text” style, then the “link” style:
.bodyytext {
font-family:Arial;
font-size:11px;
color: black }
.link {
text-decoration:none }
using regular text, set up a block like the following, and the link tag inside will inherit the bodytext attributes and override the underlining of links:
text here link here more text here
The … chunk can go in the section of the document. Or use a separate stylesheet.
January 18th, 2008 at 7:17 pm
You could do this
put the following between your tags
a { text-decoration: none; }
OR
you could just do this
if you just want to do it on 1 or 2 links
you would use option 1 if you wanted that for all links!
Joe
January 19th, 2008 at 7:24 pm
a, a:visited
{ text-decoration:none;
color:#000000;
}
Put that at the top (or just in your CSS if you know where/what that is) and all your links will have no underline and you can replace the color with whatever you want. (#000000 is black).
January 22nd, 2008 at 1:01 pm
If you manage all your different text styles with Cascading Style Sheets (you should), it’s pretty easy. Create a link style that overrides the underlining that links default to, and sets the color the same as the other text. First the “body text” style, then the “link” style:
.bodyytext {
font-family:Arial;
font-size:11px;
color: black }
.link {
text-decoration:none }
using regular text, set up a block like the following, and the link tag inside will inherit the bodytext attributes and override the underlining of links:
text here link here more text here
The … chunk can go in the section of the document. Or use a separate stylesheet.
January 23rd, 2008 at 8:02 am
Check these out.
How to Set the Color for Links in a Web Page You Design
Also, Tools, Internet Options, Color