
Originally Posted by
GregW
Add onClick="this.value=''" in to the <input> tag for the fields where visitors have to enter their email and username. Like this:
<input name='signupname' type='text' class="form" id='signupname' onClick="this.value=''" value='Enter your email address here!'/>
This will make the forms go blank when the user clicks on them rather than having them delete the "Enter your email address here!" text first before entering their information.
I also don't think that you should have another sign up steps box at the bottom. I understand the idea of reminding the visitors that scroll to the bottom how to sign up, but I think that a few may find it confusing. Some visitors may not know which box to enter their information in to (even though we know that it does not matter, some may not know this).
One more important thing... you need to set a theme for your hyperlinks and stick to it. Right now you have bold text only for the "click here" link and I also found that other links in the top right corner had no style to them, they just look like normal text. If you're not careful your site isn't going to be much fun for your visitors to use if they can't easily see where the links are. Definitely underline them and maybe even change their colour.
EDIT: One more thing, I didn't know that the "Signup here!" button was clickable because my mouse cursor doesn't change like it would with a normal link when I hover over it. You can rectify this by adding this line of code to your css:
.cool-button:hover {cursor: pointer;}
Bookmarks