I am using the following script to replace "Names" text filed with "Your Name" but the problem is this solution does not work in IE7 and instead of "Names" on "Your Name" there is a blank area. Is there a way to make this work with IE7?
<style>
.info{
visibility: hidden;
position: relative;
}
.info:after {
visibility: visible;
position: absolute;
top: 0;
left: 0;
content: "Your Name";
}
</style>