i have installed chrono forms and its working :-). but when i checked the code i found the entire form wrapped by two <strong tags. i like to try to keep my code clean, so i tried to find where these tags are being generated and no luck. does anyone know where these are coming from? thanks, MM
Not by ChronoForms as far as I can tell (at least nothing hidden in the code). The only place ChronoForms uses 'strong' is in the Admin html - I just searched all the code in the current release.
Are the tags inside or outside the <form></form> tags - that might give us a clue?
Bob
i cant find the tags anywhere. here is the code
<div class="contentpaneopen">
<strong><strong> <form name="ChronoContact_contact_general" method="post" action="index.php?option=com_chronocontact&task=send&chronoformname=contact_general" >
<fieldset id="form">
<p><label for="name">Name</label>
<input type="text" name="name" id="name" />
</p>
<p><label for="Subject">Subject</label>
<input type="text" name="subject" id="subject" />
</p>
<p>
<label for="email">email address</label>
<input type="text" name="email_address" id="email" />
</p>
<p>
<label for="phone">phone number</label>
<input type="text" name="phone" id="phone" />
</p>
<p>
<label for="comments">comments</label>
<textarea name="comments" id="comments"></textarea>
</p>
</fieldset>
<p>
<label for="Submit" class="disappear">submit</label>
<input type="submit" name="Submit" value="Submit" id="Submit" class="input_button" />
</p>
</form>
<!-- You are not allowed to remove or edit the following 3 lines anyway if you didnt buy a license -->
<div class="chronoform">
<a href="http://www.chronoengine.com">Joomla Professional Work</a>
</div>
<!-- You are not allowed to remove or edit the above 3 lines anyway if you didnt buy a license -->
</strong></strong>
</div>
MM