Hey there, I have an annoying problem! I hope someone else has experienced the same.
I am basically trying to style a text box, and make it a bit more dynamic. However, on windows machines (in FF, CH & IE), I am finding that the mouse cursor disappears when I hover over the box. It's as if the text box is layered above the mouse cursor.
Does anyone know how to fix this?
http://www.gir2007.com/2010_beta/index.php
I have stripped down my HTML and CSS and I have found that it seems to happen just with the background colour change. See here:
http://www.gir2007.com/2010_beta/index.php
Strangely this effect only happens on windows. On Mac OS X, it seems just fine. Halp please :)
<html>
<head>
<style type=text/css>
input.textBox {
background-color: #7e7e7e;
}
</style>
</head>
<body>
<form method="post">
<input class="textBox" type="text"/>
<input type="submit" value="Submit" />
</form>
</body>
</html>