Forum Moderators: open

Message Too Old, No Replies

Embedding a flash movie in a table

adds a margin

         

korkus2000

3:48 pm on Jun 10, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I have tried to get a flash movie nested in a table. In opera and netscape 4 it adds a slight margin which breaks up my table. If it were just netscape I would forget it but its opera too.

Does anyone know through css or any other code how to get rid of this margin? I would like to stay away from absolute position if possible.

Nick_W

3:50 pm on Jun 10, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Havr you tried the obvious stuff?


.flashmovie {
margin: 0;
padding: 0;
}
.tablecell {
padding: 0;
}

Nick

lorax

3:51 pm on Jun 10, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



I would think the following would work but someone more familiar with CSS may have another opinion :)

border-width : 0px;
margin : 0px;
padding : 0px;

korkus2000

3:54 pm on Jun 10, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



I am an idiot. Sorry guys. I tried what Nick_W said and it seemed to not work. Well I might need to upload it to the server to see the changes! DOH!

Thanks guys