View Single Post
  #3 (permalink)  
Old Feb 12th, 2008, 03:08
daygon daygon is offline
Reputable Member
Join Date: Dec 2005
Location: Texas
Age: 19
Posts: 328
Thanks: 0
Thanked 0 Times in 0 Posts
Re: highlight the current page of a drop down menu

try it in css...

css:
Code: Select all
.blah a:link{
background: #cbcbcb;
}

.blah a:active{
background: #006699;
}
and html:
HTML: Select all
<div class="blah"><a src="nfjfjf.php">nfjfj</a></div>
try that and see if it works out for ya
Reply With Quote