OK, the problem appears to me is just specifying the styles you actually want on the popup form.
For example, in popup-contact.css there are a number of spots where we see:
That's a relative font size. For the demo form that was OK. For your page, it's obviously too small (something higher up must have already set the global font-size or at least the font-size inherited by this form to something smaller than the default). I'd suggest using the exact px (like 14px, 15px, or 16px), or a percentage (also relative but I prefer it to ems when setting font-size, it's a legacy browser thing), which in this case would be about 120%, 125%, give or take.
It also looks as though if you want black like the demo for the labels, you need to specify the color here (additions, changes highlighted):
Code:
#contactus label
{
font-family : Arial, sans-serif;
color: #000;
font-size: 125%;
font-weight: bold;
}
I included the font-size change. But it will only affect the labels there, if you want it for other things, find their selectors and make the change there as well, like here (for the size of the text inside the text inputs and textarea):
Code:
#contactus input[type="text"],textarea
{
font-family : Arial, Verdana, sans-serif;
font-size: 0.8em; */ should be 120% or 125% /*
line-height:140%;
color : #000;
padding : 3px;
border : 1px solid #999;
-moz-border-radius: 5px;
-webkit-border-r . . .
Anything else that's not to your liking? If you find something else that's 'off', find its selector and make the appropriate additions and/or changes. If you have trouble with a particular one, let us know.
Bookmarks