Hi there guys,
I am trying to use Css to do my links but none of them want to work, I have got them in the right order and it just wont work, below is the code. Any ideas?
Cheers,
Joe
/* CSS Document */
.mainText {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:13px ;
}
/* Titles */
.title1 {
font-size:26px;
font-weight:300;
}
.title1Colour1 {
color:#F48808;
}
/* Links */
a:link {
color:82AF16;
text-decoration:underline;
}
a:visited {
color:82AF16;
text-decoration:underline;
}
a:hover {
color:#333333;
text-decoration:underline;
}
a:active {
color:82AF16;
text-decoration:underline;
}
.nav {
color:#FFFFFF;
font-size:12px;
font-weight:600;
}
.nav:link {
color:#FFFFFF;
text-decoration:none;
}
.nav:visited {
color:#FFFFFF;
text-decoration:none;
}
.nav:hover {
color:#333333;
text-decoration:none;
}
.bottomNav:link {
color:82AF16;
font-size:10px;
text-decoration:none;
}
.bottomNav:visited {
color:82AF16;
font-size:10px;
text-decoration:none;
}
.bottomNav:hover {
color:#333333;
font-size:10px;
text-decoration:none;
}
.bottomNav:active {
color:82AF16;
font-size:10px;
text-decoration:none;
}
I am trying to use Css to do my links but none of them want to work, I have got them in the right order and it just wont work, below is the code. Any ideas?
Cheers,
Joe

/* CSS Document */
.mainText {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:13px ;
}
/* Titles */
.title1 {
font-size:26px;
font-weight:300;
}
.title1Colour1 {
color:#F48808;
}
/* Links */
a:link {
color:82AF16;
text-decoration:underline;
}
a:visited {
color:82AF16;
text-decoration:underline;
}
a:hover {
color:#333333;
text-decoration:underline;
}
a:active {
color:82AF16;
text-decoration:underline;
}
.nav {
color:#FFFFFF;
font-size:12px;
font-weight:600;
}
.nav:link {
color:#FFFFFF;
text-decoration:none;
}
.nav:visited {
color:#FFFFFF;
text-decoration:none;
}
.nav:hover {
color:#333333;
text-decoration:none;
}
.bottomNav:link {
color:82AF16;
font-size:10px;
text-decoration:none;
}
.bottomNav:visited {
color:82AF16;
font-size:10px;
text-decoration:none;
}
.bottomNav:hover {
color:#333333;
font-size:10px;
text-decoration:none;
}
.bottomNav:active {
color:82AF16;
font-size:10px;
text-decoration:none;
}
Comment