persisting sliding doors image rollovers IE

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
User avatar
wtf
Forum Contributor
Posts: 331
Joined: Thu Nov 03, 2005 5:27 pm

persisting sliding doors image rollovers IE

Post by wtf »

Greets,

I'm having issue with sliding doors type menu system in IE.

Here's the web site http://www.aeromist.com


Take a look at main menu on the left. In FF, if I click on the link it takes me to that section and it knows what the current button is. This is all achieved via CSS. IE is not behaving and I just can't get it going. Here's the sample code

Code: Select all

<ul>
				<li><a class="shoponline" href="?s=shoponline&p=misting"></a></li>
				<li><a class="applications" href="?s=applications"></a></li>
				<li><a class="doityourself" href="?s=doityourself"></a></li>
				<li><a id="current" class="support" href="?s=warranty"></a></li>
				<li><a class="contact" href="?s=contact"></a></li>
				<li><a class="links" href="?s=links"></a></li>
				<li><a class="home" href="?s=home"></a></li>																	
			</ul>
and the CSS to show "support" as underlined is

Code: Select all

/* ----- [support] ----- */
#navWrap ul li a.support {
	width: 120px;
	height: 30px;		
	background-position: -120px -90px;
}
#navWrap ul li a.support:hover, #navWrap ul li a#current.support {background-position: 0 -90px;}
Any insight is greatly appreciated.
Mr.H
Forum Newbie
Posts: 1
Joined: Thu Jun 01, 2006 1:05 am

It seems that the menue works fine

Post by Mr.H »

Hi it seems that the menu works fine. Is your question steel relevant?
I know from my experience that IE handles the CSS quite good.

Mr.H
sliding doors
User avatar
wtf
Forum Contributor
Posts: 331
Joined: Thu Nov 03, 2005 5:27 pm

Post by wtf »

Mr. H,

Yes, my question is still relevant. Rollovers are working fine on IE but persisting the same it doesn't. If you have solution for me please feel free to share.


~wtf
Post Reply