Page 1 of 1

Where do I find the source for the Contact Form

Posted: Sun Nov 26, 2006 5:09 pm
by afri-can
I want to make changes to the contact form like remove the header (contact), remove the etc..
Where is the template stored?

Re: Where do I find the source for the Contact Form

Posted: Mon Nov 27, 2006 2:31 am
by Dr.CSS
Int he \plugins\ folder you will find function.contact_form.php in this you will find the... line 83 to 103...


" method="post" >
                >
                        Contact
>Your name :
" />

>Your email address :
" />

>Subject :
" />

>Message :
>

        />
                        />
               


Re: Where do I find the source for the Contact Form

Posted: Mon Nov 27, 2006 5:13 pm
by afri-can
found another sollution instead of tampering with the soure
I put the contact form in a div and gave it some contra styles

Code: Select all

<style type="text/css">
<!--
div#contactform {
	font-family: Arial, Helvetica, sans-serif;
}
div#contactform legend {
	display: none;
}
div#contactform label {
	margin-bottom: 10px;
}
div#contactform fieldset{
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
}
-->
</style>
Thanks for your help