Hi,
I am the owner of http://www.1tm.com and on our homepage we have fixed images on the bottom for Facebook and Twitter. They show up fine and working in all browsers but with IE they are showing on the top of our page.
Here is the code we are using:
HTML:
<a href=“http://www.facebook.com/pages/1-Tech-Media/179227938762292” class=“changeimage10” title=“Facebook”></a>
<a href=“http://www.twitter.com/1TechMedia” class=“changeimage11” title=“Twitter”></a>
CSS:
a.changeimage10 {
position:fixed;
bottom:0em;
right:200;
height:38;
width:100;
background-repeat: no-repeat;
background-image: url(‘facebook.png’);
display: block
}
a.changeimage10:hover {
position:fixed;
bottom:0em;
right:200;
height:67;
width:100;
background-repeat: no-repeat;
background-image: url(‘facebook2.png’);
display: block:
z-index: 9999;
}
a.changeimage11 {
position:fixed;
bottom:0em;
right:80;
height:38;
width:100;
background-repeat: no-repeat;
background-image: url(‘twitter.png’);
display: block;
}
a.changeimage11:hover {
position:fixed;
bottom:0em;
right:80;
height:67;
width:100;
background-repeat: no-repeat;
background-image: url(‘twitter2.png’);
display: block;
z-index: 9999;
}
Any help would be greatly appreciated.
Thanks!