You can also format your contact form in the pw.css style sheet. Here's an example:
/*-----------------------*
/* =FORM styles */
.form {
padding:0;
margin:0;
border:0;
}
textarea {
width: 71%;
height: 113px;
font-family: Verdana, sans-serif;
font-size: 1em;
padding-left: 4px;
border: 1px solid #000;
background: transparent url('images/textarea-bg.pn
}
I added a 1px solid border to the textarea ... completely optional of course ... but it helps the textarea show up.
Is this helpful?
Eric
Main Topics
Browse All Topics





by: EricBourlandPosted on 2009-10-24 at 19:12:33ID: 25655234
Well, I usually don't apply a base font style to the body:
body {
color: #712919;
font-family: Geneva, Verdana sans-serif;
font-size: .8em;
line-height: 1.5em;
text-align: justify;
}
Instead, in your style sheet, what I did was:
body {
color: #712919;
}
p {
font-family: Geneva, Verdana sans-serif;
font-size: .8em;
line-height: 1.5em;
text-align: justify;
padding-bottom: 1em;
}
This changed the Times New Roman to the proper Geneva.
I'll look at the Contact form in a minute...
Eric