Where do I find the source for the Contact Form

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Locked
afri-can

Where do I find the source for the Contact Form

Post 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?
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

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

Post 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 :
>

        />
                        />
               

afri-can

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

Post 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
Locked

Return to “Layout and Design (CSS & HTML)”