HI!
I'm just playing around with the sliding doors hover effect and it works fine in IE but not in FF or Safari???
I can't work out what they dont like about it??
Here is the code I wrote. bit messy because I was only testing the idea out but should make sense.
Thanks.
I'm just playing around with the sliding doors hover effect and it works fine in IE but not in FF or Safari???
I can't work out what they dont like about it??
Here is the code I wrote. bit messy because I was only testing the idea out but should make sense.
PHP Code:
<head>
<title>Hover test</title>
<style type="text/css">
body {
background:#000000;
}
#main:hover {
background-position: right;
}
img {
border:none;
}
#main {
background:#000000 url(bg.png) left top no-repeat;
width:325px;
height:800px;
}
</style>
</head>
<body>
<div id="main"><a href="#"><img src="photo.png" /></a>
</div>
</body>
</html>

xx