Hi,
in my web page i want to use verdana sans serif font family and 13px size in all links except some divisions. In those division i want to change the size of links. but i dont know hhow to do it.
here is my css code
Code:
.body
{
font-family: Verdana,sans-serif;
font-size: 13px;
color: #000000;
}
a:link {
font-family: Verdana,sans-serif;
font-size: 13px;
color: #635050;
text-decoration: none;
}
a:hover {
font-family: Verdana,sans-serif;
font-size: 13px;
color: #c3bcaf;
text-decoration: underline;
}
a:visited {
font-family: Verdana,sans-serif;
font-size: 13px;
color: #000000;
text-decoration: none;
}
div.filmandyear{
font-family: Verdana,sans-serif;
font-weight:bold;
font-size:x-large;
}
now in division filmandyear my font size is x-large. But because of my link size is 13px the year link in this division looks in 13px. How could i change its size to x-large?
thanks
|