Transparent Forms
If you have a cool background and don't want your form to cover it up, you can use this code :) I'm so happy because I discovered this code on my own without going to any tutorials. It's like the first thing I ever learned on my own, so if you're going to put this on your webpage, please credit me :)
1 You're going to need a CSS code for your form, so just copy the following and paste it inside your <head> and </head> tags:
<style type="text/css">
input, textarea
{background:none;
border: 1 solid #847BA8;
font-family:verdana;
text-align: left;
color: #ffffff;
font-weight:normal;
font-size:8pt;
filter: alpha(opacity=100)}
</style>
2 Where it says none, do NOT edit that. That's what makes your form transparent. However, edit all the other parts to your liking :)









