I have a website that is Flash.
I wanted to add a css div to display a small facebook logo on the top right of the browser window.
I added what I think is the correct code, I tested on SAFARI and it works properly. On Firefox and IE, it does not display the image/link at all.
HOW CAN I GET THIS IMAGE TO DISPLAY ON ALL BROWSERS?
So on my index.html page that contains the embedded flash movie, I added the following:
To the <head>
<style type="text/css">
<!--
.div-1a {
position:absolute;
top:15;
right:0;
width:200px;
}
-->
</style>
To the <body>
<div class="div-1a">
<a href="MYLINK"><img src="MYIMAGE" border="0" alt="Visit Our Facebook Page" /></a>
</div>