For the life of me I can't work out the following:
Refer to http://www.rosmini.school.nz/index.php/contact-us?chronoform=ContactUs&event=submit
1) Why the above border does not surround the whole error but instead makes a line only above it
2) How to remove the number in front. I have tried li {list-style: none} with no joy.
Refer to http://www.rosmini.school.nz/index.php/contact-us?chronoform=ContactUs&event=submit
1) Why the above border does not surround the whole error but instead makes a line only above it
2) How to remove the number in front. I have tried li {list-style: none} with no joy.
Hi rdadmin,
I think it's because you have <p> tags around the form. These are not technically permitted in HTML. What's happening in FireFox is that your form HTML which is
Bob
I think it's because you have <p> tags around the form. These are not technically permitted in HTML. What's happening in FireFox is that your form HTML which is
<p>
<span class="cf_alert">
<ol>
<li>The validation code was not entered correctly. Please try again.</li>
</ol>
</span>
<form . . .
gets changed into <p>
<span class="cf_alert"></span>
</p>
<ol>
<li>The validation code was not entered correctly. Please try again.</li>
</ol>
<form . . .
Other browsers may behave differently!Bob
Hi Bob,
You were correct. The problem is that my editor puts the <p> </p> in for me around the Chronoform plugin. I had to edit the database directly to get them out. Is there a better solution?
You were correct. The problem is that my editor puts the <p> </p> in for me around the Chronoform plugin. I had to edit the database directly to get them out. Is there a better solution?
This topic is locked and no more replies can be posted.