Ya know... I tried that. I should probably try it again because what happened didn't seem like it should have happened...
I'm not at work but the code goes something like this:
Code:
<div class="container">
<object align="left" blah blah blah>
<embed src="flash.flv" blah blah blah
</embed>
</object>
text text text text text text text text text
</div>
So I tried the padding style and the margin style in both the embed and the object tags with no luck in FF.
So then I tried adding a DIV around the flash like this:
Code:
<div class="container">
<div style="margin-right=15px">
<object align="left" blah blah blah>
<embed src="flash.flv" blah blah blah
</embed>
</object>
</div>
text text text text text text text text text
</div>
I ended up with a DIV that was 1px by 1px with a 15px margin on the right. It didn't surround the flash, like I thought it would.
So I added height and width to it like this:
Code:
<div class="container">
<div style="margin-right=15px; height=240px; width=300px">
<object align="left" blah blah blah>
<embed src="flash.flv" blah blah blah
</embed>
</object>
</div>
text text text text text text text text text
</div>
Now the div was the same size as the flash with an additional 15px margin on the right.
When I previewed it in FF, it's like the DIV was on a layer by itself... in front of or behind both the flash and the text. It was just there but it didn't affect the placement of anything around it. The text just overlapped the DIV and butted right up against the flash like it always had been doing.
??
Didn't seem right to me.. I think that's when I came here to ask lol