Hello everybody
I need some help with subscription form customize
the Width is a little too long for my web site....so..if somebody can help me wit that
i'll be very thankfull for that
-Here's the HTML code:
<style>
.link,
.link a,
.signupframe
{
color: #226699;
font-family: Arial, Helvetica, sans-serif;
font-size: 13px;
}
.link,
.link a {
text-decoration: none;
}
.signupframe {
border: 1px solid #FFFCFC;
background: #32E4F1;
}
.signupframe .required {
font-size: 10px;
}
</style>
<form method=post action="https://app.icontact.com/icp/signup.php" name="icpsignup" id="icpsignup182" accept-charset="UTF-8" onsubmit="return verifyRequired182();" >
<input type=hidden name=redirect value="http://www.icontact.com/www/signup/thanks.html" />
<input type=hidden name=errorredirect value="http://www.icontact.com/www/signup/error.html" />
<div id="SignUp">
<table width="260" class="signupframe" border="0" cellspacing="0" cellpadding="5">
<tr>
<td valign=top align=right>
<span class="required">*</span> First Name
</td>
<td align=left>
<input type=text name="fields_fname">
</td>
</tr>
<tr>
<td valign=top align=right>
<span class="required">*</span> Email
</td>
<td align=left>
<input type=text name="fields_email">
</td>
</tr>
<input type=hidden name="listid" value="3522">
<input type=hidden name="specialid:3522" value="ITIU">
<input type=hidden name=clientid value="793066">
<input type=hidden name=formid value="182">
<input type=hidden name=reallistid value="1">
<input type=hidden name=doubleopt value="0">
<tr>
<td> </td>
<td><span class="required">*</span> = Required Field</td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="Submit" value="Submit"></td>
</tr>
</table>
</div>
</form>
<script type="text/javascript">
var icpForm182 = document.getElementById('icpsignup182');
if (document.location.protocol === "https:")
icpForm182.action = "https://app.icontact.com/icp/signup.php";
function verifyRequired182() {
if (icpForm182["fields_fname"].value == "") {
icpForm182["fields_fname"].focus();
alert("The First Name field is required.");
return false;
}
if (icpForm182["fields_email"].value == "") {
icpForm182["fields_email"].focus();
alert("The Email field is required.");
return false;
}
return true;
}
</script>
<span class="link"><a href="http://www.icontact.com">Email Marketing</a> You Can Trust</span>
-Here's the site:
http://professional-marketing-guides.com/
Thanks


