Links Not working in Chrome - Can anyone Help?

1 replies
Hello

I was wondering if anyone was kind enough to help.

I have just noticed that on all of my websites the links in the sidebar have stopped working in Chrome.

The work on every other browser.

I have done a bit of troubleshooting and have narrowed it down to a part of the code - as when I delete this code the links start working.

Can anyone let me know if they see any errors in this code:

<!-- [GWA] AutoResponder Begin -->
<div class="custom">
<div id="sidebar-optin" class="sidebar-optin">
<img src="<?php bloginfo('template_url'); ?>/images/logo2.png"
width="300" height="110"></a>
<form action="<?php bloginfo('url'); ?>/index.php" method="post">
<input id="argwa_name" name="gwaname" value="Your Name Here" size="20" style="background-color: #FFFFCC" type="text" />
<input id="argwa_email" name="gwaemail" value="Your Email Here" size="20" style="background-color: #FFFFCC" type="text" /><br /><input class="button" onclick="return gwaCheckForm(this.form)" name="Add" type="submit" value="" /></div>
<input name="act" type="hidden" value="s_add" /> <input name="listid" type="hidden" value="1" /></form></div><!-- [GWA] AutoResponder End -->

Thanks in advance
Clare
#chrome #links #working
  • Profile picture of the author otfromtot
    The only thing I can see that doesn't look right,

    Code:
    <input class="button" onclick="return gwaCheckForm(this.form)" name="Add" type="submit" value="" /></div>
    move that </div> to the outside of the </form>

    Code:
    <!-- [GWA] AutoResponder Begin -->
    <div class="custom">
    <div id="sidebar-optin" class="sidebar-optin"> <img src="<?php bloginfo('template_url'); ?>/images/logo2.png" width="300" height="110"></a>
      <form action="<?php bloginfo('url'); ?>/index.php" method="post">
        <input id="argwa_name" name="gwaname" value="Your Name Here" size="20" style="background-color: #FFFFCC" type="text" />
        <input id="argwa_email" name="gwaemail" value="Your Email Here" size="20" style="background-color: #FFFFCC" type="text" />
        <br />
        <input class="button" onclick="return gwaCheckForm(this.form)" name="Add" type="submit" value="" />
        <input name="act" type="hidden" value="s_add" />
        <input name="listid" type="hidden" value="1" />
      </form>
    </div></div>
    <!-- [GWA] AutoResponder End -->
    {{ DiscussionBoard.errors[8309551].message }}

Trending Topics