Home › Forums › Other › Can someone recommend a customizable contact form, please? › Reply To: Can someone recommend a customizable contact form, please?
July 11, 2014 at 1:29 am
#175187
Inactive
I don’t see
input[name=spam]{
/* rules here affect only the anti-spam text input */
}
anywhere in the coding. The closest I see is.cform .antispam{
, but if I assign a width to it, the required field area slides to the left.
….remember that it will be ignored if the element has static positioning (which is the default). Add
position:relative
to the form.
Yep, that was the problem. I was forgetting to add position:relative
along with the z-index. The form flows over the page now if the message area is resized.
Many Thanks!!