Click to See Complete Forum and Search --> : I need some help...
Poe13
06-21-2007, 09:06 PM
I'm somewhat new to CSS and I'm having a problem. I've styled all of my links using an external style sheet. The problem is I have a portion of text that contains links and I want to style the links differently, but the external style sheet is overriding everything I try. Any help is greatly appreciated.
jasonahoule
06-21-2007, 09:17 PM
create a different class for those links.
[code]
<style>
.newClass a:link {
text-decoration:none;
color:#CCCCCC;
}
</style>
<div class="newClass">
All my content is in here...
<a href="#">Other Links</a>
</div>
Poe13
06-21-2007, 09:46 PM
Thanks so much Jason, I believe that fixed it.