- Impact
- 13
I have style.css that defines the link style:
But I want to add a different type of link for a different part on the page. I added this to style.css:
And then in CuteNews I did this (keep in mind CuteNews has their own little replacements, [link] is like on vB): [code]<span style="news...ew style, but the link remains the old style.
Code:
A:link {
color : #FFC20C;
font-family : Arial;
font-size : 11px;
font-weight : normal;
font-style : normal;
text-decoration : none;
}
A:visited {
color : #FFC20C;
font-family : Arial;
font-size : 11px;
font-weight : normal;
font-style : normal;
text-decoration : none;
}
A:hover {
color : #FFC20C;
font-family : Arial;
font-size : 11px;
font-weight : normal;
font-style : normal;
text-decoration : underline;
}
But I want to add a different type of link for a different part on the page. I added this to style.css:
Code:
.news {
color : #FFC20C;
font-family : Arial;
font-size : 14px;
font-weight : bold;
font-style : normal;
text-decoration : none;
}
A.news:link {
color : #FFC20C;
font-family : Arial;
font-size : 14px;
font-weight : bold;
font-style : normal;
text-decoration : none;
}
A.news:visited {
color : #FFC20C;
font-family : Arial;
font-size : 14px;
font-weight : bold;
font-style : normal;
text-decoration : none;
}
A.news:hover {
color : #FFC20C;
font-family : Arial;
font-size : 14px;
font-weight : bold;
font-style : normal;
text-decoration : underline;
}
And then in CuteNews I did this (keep in mind CuteNews has their own little replacements, [link] is like on vB): [code]<span style="news...ew style, but the link remains the old style.












