CSS

A

AB

I created a CSS in FrontPage 2003 and I am not able to get
the links underlined.

Could someone help with the coding for it? I need help
ASAP.

Right now I have for the links:
--------
A:link {
color: #31498C;
font: "underlined";
}

A:visited {
color: #31498C;
font: "underlined";
text-decoration: "underlined";
}
----------
What do I need to add?

Thanks

AB
 
C

Cheryl Wise

That's because you did not use the correct css. It should be:
a {
color: #31498C;
text-decoration: none;
}
 
K

Kevin Spencer

A CSS Style sheet is always overridden by inline styles and attributes. Are
you sure you don'thave any in your HTML?

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.
 
G

Guest

Thanks guys. Once I changed to

A:link {
color: #31498C
}

A:visited {
color: #31498C


my problem was solved

Thanks again


----- Kevin Spencer wrote: ----

A CSS Style sheet is always overridden by inline styles and attributes. Ar
you sure you don'thave any in your HTML

--
HTH
Kevin Spence
..Net Develope
Microsoft MV
Big things are made u
of lots of little things
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top