you guys think this was custom built or generated from a contact form builder site? http://www.thegroop.net/contact (bottom right corner) trying to duplicate that look...i use emailmeform.com but it doesn't allow me to customize the fields or the background color for it. any ideas? ty! drew
Hi Use google chrome to open the page. Then make Inspect element. You will find all the file it used. just copy it and modify it as you wish. Hope this will help.
Not sure if its custom or done with a form builder but to be honest its not hard to do yourself dont see the point in form builders. input { background-color: #666; } http://articles.sitepoint.com/article/style-web-forms-css
It is very simple form, you don't need any special tools to make one. Appearance of the input fields is modified by CSS file. You can use the following input { background:#b1aca5; border:0 none; color:#FFFFFF; font-family:Georgia,Helvetica,Arial; font-size:18px; height:31px; padding:10px 15px 0; width:170px; } input[type=submit] { background: #b94725; font-size:15px; width:80px; } Code (markup): You probably want to replicate that disappearing text effect when you click on the input field. Here's a quick example for you, edit the the value of the text ("Click here") to your liking, just make sure it is EXACTLY the same in all three positions <input type="text" onfocus="if(this.value=='Click here')this.value=''" onblur="if(this.value=='')this.value='Click here'" value="Click here" /> Code (markup): I hope it helps!