Page 1 of 1

Not working in Firefox

Posted: Sat Mar 01, 2008 10:48 am
by thinknirmal
Hi, I am developing an eCommerce website:

http://www.ews-store.com

The 'Login' link at the top is not working in Firefox (IE 7.0 is fine). When you view the page source, everything seems to be correct. What the problem would be? Any guess? I am breaking my head regarding this.

The PHP code for that hyperlink is:
<a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a>

Any help is appreciated :D

Re: Not working in Firefox

Posted: Sat Mar 01, 2008 12:52 pm
by Sekka
Your problem is one of HTML, not PHP.

A div with an ID of 'logoWrapper' is going above the login link, making it unclickable.

Re: Not working in Firefox

Posted: Sat Mar 01, 2008 8:44 pm
by thinknirmal
Oh... Thank you Sekka, for finding that for me!
Actually I have placed the logowrapper div right after the link strip at the top. To have an aligned view, I pushed up the logo using the following CSS:

Code: Select all

#logoWrapper{
    height:75px;
    margin: 0em 0em 0em 10px;
    padding: 0em;
    position: relative;
    top: -30px;
    }
I checked removing the postioning code and the links worked. But how should I bring up the logo while making the links work? I tried setting the z-index of the logo wrapper to '1' and the links div to '2'. But that too didn't work.