Forum Moderators: open
First, I am new to Flash. I have recently created a logo in flash that has some movement to it. The site this logo is going into is built on CSS (i.e. no tables). I am trying to incorporate the logo (name:bdclogo.html) into the CSS sheet so that it will display where I have a <div id="logo">. What do I write on my css page to incorporate this logo?
#logo{
INCLUDE(?): bdclogo.html}
I know the above code is horribly wrong but I am just trying to give an idea of my thought pattern. Any help would be greatly appreciated!
You have two options: the first is to simply place the usual object/embed tags for the flash file inside the
div, and the second (if you don't want the flash file directly included) is to use Javascript to dynamically replace the div contents by the file, for example by adapting the SIFR (image replacement) method.