Announcement

Collapse
No announcement yet.

Logo link works in Explorer - not in Firefox - why?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Logo link works in Explorer - not in Firefox - why?

    here is the site www.buyit247.com

    I amended the site code so that the logo (top left) is a link back to home. However, whilst this works fine in Explorer, it doesn't work in Firefox. Anybody know why?

    Here is the code...

    <table width="100%" cellspacing="0" cellpadding="0" border="0" bgcolor="#FFFFFF">
    <tr>
    <td><a href="http://www.buyit247.com"</a><actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%22Brochure%22"><actinic:variable name="CompanyLogoImage" /></actinic:block><actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Brochure%22"><actinic:variable name="BrochureLogoImage" /></actinic:block></td>
    <td align="right">
    <td width="49%"><div align="center"><img src="logo_rollerBF.gif" width="480" height="60" alt="rollingad" /></div></td>
    <td width="3%"><div align="right"><img src="logo_number.gif" width="250" height="60" alt="contactnos" /></div></td>
    </tr>
    </table>
    </tr>
    </table>
    &nbsp;
    </td>
    </tr>
    </table>
    <table width="100%" cellspacing="0" cellpadding="5" class="secondbar" style="background-color:#ffffff;">
    <tr>
    <td>
    <actinic:variable name="QuickSearchBar" />
    </td>
    <td align="right">
    <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%3d%3d%20%22Brochure%22">
    <actinic:variable name="BrochureNavBar" value="Brochure Nav Bar Text Link List" />
    </actinic:block>
    <actinic:block if="%3cactinic%3avariable%20name%3d%22PageType%22%20%2f%3e%20%21%3d%20%22Brochure%22">
    <actinic:variable name="NavigationBar" value="Horizontal Nav Bar Text Links" />
    </actinic:block>
    </td>
    </tr>
    </table>
    Last edited by Ben Spiral; 04-Sep-2007, 10:56 AM. Reason: adding code

    #2
    you've closed your link tag before the logo starts (IE evidently couldn't care less!)

    my html is basic but try changing
    <a href="http://www.buyit247.com"/>
    <img class="logoimage" width="322" height="60" border="0" alt="buyit247.com" src="acatalog/logo1BF.gif"/>
    to
    <a href="http://www.buyit247.com">
    <img class="logoimage" width="322" height="60" border="0" alt="buyit247.com" src="acatalog/logo1BF.gif"/></a>
    and it should work
    Tracey

    Comment


      #3
      oh aye...yeh

      would have been easier just to instruct the removal of the close tag and where to put it LOL

      When I viewed the OP, it didn't have the code in it or I'd have thought about that LOL

      hopefully it was still apparent which bits needed changing though, from the difference between the two
      Tracey

      Comment

      Working...
      X