Hey, so I have my contact form all set up and ready to go. Only problem is that when you type in the field it cuts off the bottom third of the letter, so you can't see what you typed into it. Any clue how to fix this?
Hey, so I have my contact form all set up and ready to go. Only problem is that when you type in the field it cuts off the bottom third of the letter, so you can't see what you typed into it. Any clue how to fix this?
How did you set up the text field? Where can we see the form?
The form can be seen on http://blueskykenya.org/camp-bluesky-registration/
I set the text field up just through the natural motion of choosing text field in the generate field tab. Then copied/pasted like the instructions say.
I'm thinking it may be an issue in the stylesheet of our site. I wouldn't even know where to begin looking for something like that though, or code to enter to alter it.
Sorry, forgot to make it a link to the specific page not just the site, I edited the post though.
You mean the "Cabin Request" field? If so, it's just a stylesheet issue. By checking the page with Firebug, I found this style is applied to the field (textarea).
wp-content/themes/BlueSky/style.css line #910
input[type="text"], input[type="password"], textarea {
background: none repeat scroll 0 0 #FAFAFA;
border: 1px solid #DDDDDD;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1) inset;
color: #888888;
height: 14px;
}
height: 14px; I guess this shouldn't be applied to textarea.
You must log in to post.