-
1. Re: Creating Good Looking Email Form? How?
Jon Fritz II Aug 10, 2012 7:13 AM (in response to fcukinyahoo)That appears to all be controlled by CSS (Cascading Style Sheets).
Here is a good resource to help you...
-
2. Re: Creating Good Looking Email Form? How?
fcukinyahoo Aug 10, 2012 7:26 AM (in response to Jon Fritz II) -
3. Re: Creating Good Looking Email Form? How?
osgood_ Aug 10, 2012 7:30 AM (in response to fcukinyahoo)1 person found this helpful -
4. Re: Creating Good Looking Email Form? How?
Jon Fritz II Aug 10, 2012 7:31 AM (in response to fcukinyahoo)1 person found this helpfulYup.
The rounded edges are being added using a background image in CSS (for cross browser compatibility). It's actually here: https://www.avatarnewyork.com/images/ecom/ecom-form_textfield.png
-
5. Re: Creating Good Looking Email Form? How?
Jon Fritz II Aug 10, 2012 7:33 AM (in response to Jon Fritz II)Here's all the CSS affecting one text field in that form...
background-color: transparent;
background-image: url("/images/ecom/ecom-form_textfield.png");
background-repeat: no-repeat;
border: 0px none;
color: rgb(102, 102, 102);
font-size: 9px;
height: 16px;
margin-bottom: 12px;
margin-top: 5px;
padding: 6px 0px 0px 8px;
width: 262px;
outline: 0px none;
margin:0px;
list-style:none;
font-family: "Lucida Grande","Lucida Sans Unicode",Arial,Verdana,sans-serif;
text-align: left;
-
6. Re: Creating Good Looking Email Form? How?
fcukinyahoo Aug 10, 2012 7:34 AM (in response to osgood_) -
7. Re: Creating Good Looking Email Form? How?
fcukinyahoo Aug 10, 2012 7:38 AM (in response to fcukinyahoo)I seee got it. Now it is clearer. To my understanding with images they make them nice, not by only using Dreamweaver. I thought i was missing some tools. Ok God it.
Thanks alot everyone. You were very helpful.