Thread: CSS Question
View Single Post
06-06-2008, 02:44 AM
#3
Wildcard is offline Wildcard
Wildcard's Avatar
Status: Member
Join date: Jul 2006
Location: soundwave.
Expertise:
Software:
 
Posts: 379
iTrader: 12 / 100%
 

Wildcard is on a distinguished road

Send a message via MSN to Wildcard

  Old

Mind showing us the xhtml source? If its inside another element inside the 'content' div, then apply the styling to that element instead of the div in general.

And by default the active links have underlines, so your css should look like...
HTML Code:
#content a{
			color: #273e5b;
        }
		#content a:hover{
			text-decoration: none;
			color: #273e5b;
		}