In IE the link above the logo it does not display... In Firefox it does display fine though
You can see the HTML here:
<!-- m --><a class="postlink" href="http://www.alexmos.com/nsite/index.html">http://www.alexmos.com/nsite/index.html</a><!-- m -->
and CSS file here:
<!-- m --><a class="postlink" href="http://www.alexmos.com/nsite/mfsstyle.css">http://www.alexmos.com/nsite/mfsstyle.css</a><!-- m -->
ANY IDEAS??????
I think it is because of your z-index:2 on the #top_bar. I did a quick search on google and it seems that IE has trouble implementing z-index, so the top_bar just covered up your #top_left. you may have to set z-index on both elements. Not sure though.
Also, FYI you have #w_link twice, but an id is only supposed to appear once in the page. If you need it more than once, make it into a class instead.I managed to fix the problem... Thanks anyway
You can see the HTML here:
<!-- m --><a class="postlink" href="http://www.alexmos.com/nsite/index.html">http://www.alexmos.com/nsite/index.html</a><!-- m -->
and CSS file here:
<!-- m --><a class="postlink" href="http://www.alexmos.com/nsite/mfsstyle.css">http://www.alexmos.com/nsite/mfsstyle.css</a><!-- m -->
ANY IDEAS??????
I think it is because of your z-index:2 on the #top_bar. I did a quick search on google and it seems that IE has trouble implementing z-index, so the top_bar just covered up your #top_left. you may have to set z-index on both elements. Not sure though.
Also, FYI you have #w_link twice, but an id is only supposed to appear once in the page. If you need it more than once, make it into a class instead.I managed to fix the problem... Thanks anyway