No, I’m referring to the widget code that you could tweak and place wherever you wanted.
The one that looked like this:
//<![CDATA[
if (typeof newsletter_check !== "function") {
window.newsletter_check = function (f) {
var re = /^([a-zA-Z0-9_.-+])+@(([a-zA-Z0-9-]{1,})+.)+([a-zA-Z0-9]{2,})+$/;
if (!re.test(f.elements["ne"].value)) {
alert("The email is not correct");
return false;
}
for (var i=1; i<20; i++) {
if (f.elements["np" + i] && f.elements["np" + i].required && f.elements["np" + i].value == "") {
alert("");
return false;
}
}
if (f.elements["ny"] && !f.elements["ny"].checked) {
alert("You must accept the privacy statement");
return false;
}
return true;
}
}
//]]>
</script>
</p>
<div class="newsletter newsletter-subscription"><form method="post" action="https://www.blabla.com/?na=s" onsubmit="return newsletter_check(this)">
<table style="border: 0;">
<tbody>
and so on.
I want to be capable of changing the table to my liking as before, if I want all the fields to be on one line, to be able to do so.
Thanks!