Jump to content

Recommended Posts

Here is my code....

<style type="text/css">

<!--

body,td  { font-family: verdana, helvetica; font-size: 11px; color: #dedede; }

body  { background-image: url('images/bg.jpg'); background-repeat: repeat-y; }

.carea  { line-height: 15px; }

-->

</style>

I want hyperlinks to be color #BDBDBD and hover over links with mouse to be #3D6292.

I tried to make a new css but it messed the entire page. So I need to just add to that. I even tried those css makers and no luck. What tags do I add to the above?

Link to comment
Share on other sites


<style type="text/css">
<!--
body {background-image: url('images/bg.jpg'); background-repeat: repeat-y; font-family: verdana, helvetica; font-size: 11px; color: #dedede; }
td  {font-family: verdana, helvetica; font-size: 11px; color: #dedede; }
.carea  {line-height: 15px; }
a:visited {color: #BDBDBD; text-decoration: none; }
a:link {color: #BDBDBD; text-decoration: none; }
a:hover {color: #3D6292; text-decoration: none; }

-->
</style>

I don't know why you're using <!-- comment tags in your style code?

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...