Thread: CSS Question
View Single Post
06-06-2008, 02:06 AM
#1
Jako is offline Jako
Jako's Avatar
Status: Jakowenko.com
Join date: Jun 2005
Location: Michigan
Expertise:
Software:
 
Posts: 2,199
iTrader: 3 / 100%
 

Jako is on a distinguished road

  Old  CSS Question

I have a portion of my website in a div called content. I'm trying to change the hyperlink colors in only that section so I tried something like this.

HTML Code:
#content a{
			
			text-decoration: underline;
			color: #273e5b;
		}
		#content a:hover{
			text-decoration: none;
			color: #273e5b;
		}
It's changing the links for the entire site though. Any idea why?