PDA

View Full Version : CSS Question



Luke
12-01-2008, 04:38 PM
How would i get the "a:link" ETC, to be included in the class "cato".


<style type="text/css">
<!--
a:link {
color: #FFFFFF;
}
a:visited {
color: #FFFFFF;
}
a:hover {
color: #CCCCCC;
}
.cato {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color: #FFFFFF;
font-weight: bold;
background-color: #FFFFFF;
background-image: url(images/cato_bar.png);
}
-->
</style>


+rep to help.

Awfy
12-01-2008, 04:47 PM
.cato a {
}

.cato a:link {
}

.cato a:hover {
}

Etc, just input your styles.

RedCrisps
12-01-2008, 04:48 PM
+rep i needed this aswell

Want to hide these adverts? Register an account for free!