Thread: More Trouble!
View Single Post
Old 04-11-2007, 10:36 PM   PM User | #2
david_kw
Senior Coder

 
Join Date: Nov 2006
Posts: 1,000
Thanks: 0
Thanked 0 Times in 0 Posts
david_kw will become famous soon enough
I think there are lots of possible ways as usual. This might be a better question for the CSS forum, but one way to handle it could be to change the class of the tab when it is clicked to a new class with a different graphic. The CSS could be set up something like this.

Code:
.fs_sponsors {
  background: url(images/sponsors.gif) no-repeat;
  width: 77px;
  height: 16px;
  float: left;
  margin-left: 79px;
}

.fs_sponsors_hid {
  background: url(images/sponsors_hid.gif) no-repeat;
  width: 77px;
  height: 16px;
  float: left;
  margin-left: 79px;
}
david_kw
david_kw is offline   Reply With Quote