Forum Moderators: open

Message Too Old, No Replies

IE 6 Zindex Float causes links to be unclickable?

I beleive this is a z-index issue or a float issue

         

johnhamman

3:36 pm on Jan 19, 2009 (gmt 0)

10+ Year Member



Hi all,
I have a bug that is only showing in IE6.

Basically I have 3 columns (of divs), with the first 2 that float side by side.
The third div (that is to the far right) is also absolute positioned.

Oddly enough, none of the links in any of these divs are clickable. And I cant figure out why.

Can someone look and help me track this down?

CODE In a Nutshell:


<!-- Floats left -->
<div id="content-block-home-personal">

<p><a class="personal" href="/link/">link</a><br />
<a class="personal" href="/link/">link</a><br />
<a class="personal" href="/link/">link</a></p>
</div>
<!-- Floats left -->
<div id="content-block-home-business">

<p><a class="business" href="/link/">link</a><br />
<a class="business" href="/link/">link</a><br />
<a class="business" href="/link/">link</a></p>
</div>

<!-- Absolute positioned to the right and slighly above -->
<div id="servicecheck2">
<p><a class="business" href="/link/">link</a><br />
<a class="business" href="/link/">link</a><br />
<a class="business" href="/link/">link</a></p>

</div>

[edited by: coopster at 4:29 pm (utc) on Jan. 19, 2009]
[edit reason] no personal urls please TOS [webmasterworld.com] [/edit]

johnhamman

4:27 pm on Jan 19, 2009 (gmt 0)

10+ Year Member



This has been resolved.
Under the whole area was a transparent png and IE 6 used the
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader
which caused the error.
Removed this and it worked fine.