1

I'm having trouble getting the let hand side tabs here to show up properly in IE 8:

http://dealclippings.com/deals/

They haven't been showing up since I added the "New" image and I can't seem to figure out what's up. They show up fine in all other browsers that I've seen.

Any suggestions?

Ben
  • 60,438
  • 111
  • 314
  • 488

1 Answers1

1

Use position:absolute, not relative in this decclaration. You'll need to set top: and left: as well.

.deal-tabs .tab .innerShadow .new {
  background: url("resource/new.png") no-repeat scroll 0 0 transparent;
  height: 24px;
  left: -6px;
  position: relative;
  top: -8px;
  width: 34px;
}
Diodeus - James MacFarlane
  • 112,730
  • 33
  • 157
  • 176