Announcement

Collapse
No announcement yet.

image not working as link

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

    image not working as link

    hi how you doing...im having a bit of an issue with my images in section_line.html not working as a link

    here is a link to an example page

    http://www.custom-wizard.com/acatalog/Kuryakyn.html

    the text links work fine but when you hover over the images you can see the URL where it is meant to go in the status bar, but you cannot click the image.

    here is the code for the section

    <TABLE BORDER="0" CELLSPACING="0" CELLPADDING="10">
    <TR>
    <TD ROWSPAN="2" ALIGN="LEFT" VALIGN="TOP">
    <A HREF="NETQUOTEVAR:SECTIONLINK">
    NETQUOTEVAR:SECTIONIMAGE
    </A>
    </TD>
    <TD ALIGN="left" VALIGN="MIDDLE">
    <A HREF="NETQUOTEVAR:SECTIONLINK" style="text-decoration:'none'; color:'#8e876b';" >
    <FONT FACE=VERDANA SIZE=+0><b>NETQUOTEVAR:SECTIONNAME</b></FONT></A>
    <FONT FACE=VERDANA SIZE=-1>&nbsp;NETQUOTEVAR:SECTIONTEXT</FONT> </TD>
    </TR>
    </TABLE>


    The href is the same for each <A> tag yet only the lower one works...
    is there something im missing, i can see it being a really obvious problem, may just need a outsiders view

    thanks in advance

    Phil

    #2
    The HTML for your section link looks fine. Check the HTML for Act_SectionNavImage.html (the template for the image). It should look like:
    Code:
    <!-- SectionNavImage HTML begin -->
    <IMG SRC="NETQUOTEVAR:IMAGEFILE"
    	  ALT="NETQUOTEVAR:ALTERNATETEXT"
    	  BORDER=0
    	  NETQUOTEVAR:IMAGEHEIGHT
    	  NETQUOTEVAR:IMAGEWIDTH
    	  NETQUOTEVAR:OTHERIMAGEMARKUP
    	  ALIGN="ABSMIDDLE">
    <!-- SectionNavImage HTML end -->
    A missing '<' or '>' would be enough to cause the sort of error that you describe.

    Comment

    Working...
    X