Repeat Flash Object in Header.Php
-
I’ve been trying to figure this out for a while.
I’m trying to replace my banner image with a flash banner. The flash banner’s dimensions are too small, but it would work to just repeat it. So I used the following code:
<div id=”flash”>
<object type=”application/x-shockwave-flash” data=”http://www.mysite.com/header.swf” width=”250px” height=”177px”>
<param name=”movie” value=”http://www.mysite.com/header.swf”></param>
</object>
</div>The flash loads but it’s in the center and not repeating obviously. I’ve tried to do make the changes in the style.css, but I can’t figure out how to do it. The only thing I know how to repeat is a background image, and this is not a background image. How would I repeat the entire div?
The topic ‘Repeat Flash Object in Header.Php’ is closed to new replies.