How can I take the CSS classes and IDs and incorporate them with the EE tags?
Any info on this would be great I have been struggling for a long time on this. The form, will not render without the CSS <form class=“contactForm” id=“commentform”>
I was suggested to use this: form#comment_form{} but what is that and how do I use it?
If someone could just push me in the right direction that would be a break through for me.
<!--START COMMENT FORM HERE-->
<h3>Make a Comment</h3>
<p> <form class="contactForm" id="commentform"><br />
<br />
<label for="author">Name<small></small></label><br />
<input name="author" id="author" value="" size="22" tabindex="1" aria-required="true" type="text" /><br />
<br />
<br />
<label for="email">E-mail <small> <br />
</small></label><br />
<input name="email" id="email" value="" size="22" tabindex="2" aria-required="true" type="text" /><br />
<br />
<br />
<label for="url">Website</label><br />
<input name="url" id="url" value="" size="22" tabindex="3" type="text" /><br />
<br />
<!--<small><strong>XHTML:</strong> You can use these tags: <code><a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> <pre lang="" line="" escaped=""> <label for="comment">Your Thoughts</label>
<textarea name="comment" id="comment" rows="10" cols="40" tabindex="4"></textarea>
<input class="verzend" id="send-button" tabindex="5" value="Submit Comment" name="submit" src="/images/interface/but-send-message-en.gif" type="image" />
<input name="comment_post_ID" value="#" type="hidden" />
</form></code>
THIS IS WITH THE EE TAGS, but does not render…
<!--START COMMENT FORM HERE-->
<h3>Make a Comment</h3>
<p> {exp:comment:form weblog="weblog"}<br />
<br />
<label for="author">Name<small></small></label><br />
<input name="name" id="name" value="{name}" size="22" tabindex="1" type="text" /></p><br />
<br />
<label for="email">E-mail <small><br />
</small></label><br />
<input name="email" id="email" value="{email}" size="22" tabindex="2" type="text" /></p><br />
<br />
<label for="url">Website</label><br />
<input name="url" id="url" value="{url}" size="22" tabindex="3" type="text" /> <br />
<br />
<label for="comment">Your Thoughts</label><br />
<textarea name="comment" id="comment" rows="10" cols="40" tabindex="4">{comment}</textarea></p><br />
<br />
<input class="verzend" id="send-button" tabindex="5" value="Submit Comment" name="submit" src="/images/interface/but-send-message-en.gif" type="image" /><br />
<input name="comment_post_ID" value="#" type="hidden" /></p><br />
{/exp:comment:form}Thanks!!!