I’m having the same problem. By looking at the code at http://domain.com/newsletter, it appears that the SUBSCRIBE button is in a new table row.
<tbody><tr>
<th>Email</th>
<td align=”left”><input class=”newsletter-email” type=”email” name=”ne” size=”30″ required=””></td>
</tr>
<tr>
<td colspan=”2″ class=”newsletter-td-submit”>
<input class=”newsletter-submit” type=”submit” value=”Subscribe”>
</td>
</tr>
</tbody>
Theoretically, something like this should work, but I’m not sure where I would change the HTML code:
<tbody>
<tr>
<th>Email</th>
<td align=”left”><input class=”newsletter-email” type=”email” name=”ne” size=”30″ required=””></td>
<td class=”newsletter-td-submit”>
<input class=”newsletter-submit” type=”submit” value=”Subscribe”>
</td>
</tr>
</tbody>
-
This reply was modified 6 years, 6 months ago by
qzelle.
-
This reply was modified 6 years, 6 months ago by
qzelle.
-
This reply was modified 6 years, 6 months ago by
qzelle.