The SPAM protect is still not working, sorry to say. The code on the header form is thus:
<div id="contact_form">
<div class="message">
<div id="alert"></div>
</div>
<form method="post" action="http://www.renaissancemaninc.com/index.php?main_page=image_to_contact&action=send&zenid=17087889666c36ed2151973644aaac92" name="contact_us">
<input type="hidden" value="6d755eafc0219033a7bf168f3fed4a25" name="securityToken">
<label for="contactname">
Name
<span class="required"> *</span>
</label>
<input id="contactname" type="text" value="" size="30" name="contactname">
<br class="clearBoth">
<label for="email">
Email
<span class="required"> *</span>
</label>
<input id="email" type="text" value="" size="30" name="email">
<br class="clearBoth">
<label for="enquiry">
Message
<span class="required"> *</span>
</label>
<textarea id="enquiry" rows="3" cols="40" name="enquiry"></textarea>
<input id="CUAS" type="text" autocomplete="off" style="visibility:hidden; display:none;" size="40" name="should_be_empty">
<div class="form_buttons">
<input id="submit" class="button" type="submit" value="Submit">
</div>
</form>
(NOTE: using image to contact and not the default contact form)
Code on the Image to Contact page thus:
<div id="bandSignupDefault" class="centerColumn">
<h1 id="bandSignupDefaultHeading">Contact/Estimate Request</h1>
<form enctype="multipart/form-data" method="POST" action="http://www.renaissancemaninc.com/index.php?main_page=image_to_contact&action=send" name="image_to_contact">
<input type="hidden" value="6d755eafc0219033a7bf168f3fed4a25" name="securityToken">
<address>
<div id="bandSignupContent" class="content">
<fieldset id="bandSignup-Info">
<legend>Contact/Estimate Request</legend>
<div class="alert forward">* Required information</div>
<br class="clearBoth">
<label class="inputLabel" for="first_name">Full Name:</label>
<input id="contactname" type="text" size="40" name="contactname">
<span class="alert">*</span>
<br class="clearBoth">
<label class="inputLabel" for="email_address">Email Address:</label>
<input id="email-address" type="text" size="40" name="email">
<span class="alert">*</span>
<br class="clearBoth">
<label class="inputLabel" for="phone_number">Phone Number:</label>
<input id="phonenumber" type="text" size="40" name="phonenumber">
<br class="clearBoth">
<label for="enquiry">
Message/Project Description:
<span class="alert">*</span>
</label>
<textarea id="enquiry" rows="7" cols="30" name="enquiry"></textarea>
<input id="CUAS" type="text" autocomplete="off" style="visibility:hidden; display:none;" size="40" name="should_be_empty">
</fieldset>
<fieldset id="bandSignup-Payment">
<legend>Project Images</legend>
(2MB Max - free resize tool available
<a target="_newbrowser" href="http://www.picresize.com/">here</a>
.)
<div id="org_div1" class="file_wrapper_input">
</fieldset>
<div class="buttonRow forward">
<input type="image" title=" Send Now " alt="Send Now" src="includes/templates/renaissance3/buttons/english/button_send.gif">
(please be patient for image uploads)
</div>
<div class="buttonRow">
<a href="http://www.renaissancemaninc.com/index.php?main_page=index">
</div>
<br class="clearBoth">
</div>
</form>
</div>
Still not sure if it's a CSS reference missing or what.
I haven't seen/found a clear explanation of HOW to css-driven antispam works, but my guess is that the CSS is simply hiding a field from human users, which will be auto-filled by spam robots and caught by the php file. In which case, I'm not sure what is not working with the above code, unless there's something in the DIV(s) containing the form that do something.
It doesn't appear that the ID (CUAS) of the hidden form is actually being rendered or used anywhere else in the packages code.