PDA

View Full Version : I Need Web Design Help


21C
09-08-2004, 02:29 AM
This is the main page for my Baseball Mogul league.

http://www.sportplanet.com/sbb/21c

The problem is the ( unintentionally ) little flash banner at the top of the page. I edited the page in Netscape's Composer and it looks perfectly fine in Netscape 7.1 but in IE6 it comes up tiny.

I'll be buggered if I know the problem. I inserted the code for the flash object in a cell of a table with the logo ( a static flash object ) occupying the other cell of the table.

What am I missing? I've tried adjusting the height and width of the flash object but without any luck.

Can anyone help?

sabotai
09-08-2004, 02:49 AM
It's look like the problem has to do with the table. Under the table tag it's set to width="100%". Well, that's not good.

table height="123" width="100%" cellpadding="0" cellspacing="0"

I'm talking about that line. Try setting it width="500" or something like that and see what happens.

EDIT:

Also, the width of the mlb.swf is set at 100 now, up that too about 350 as well. See how changing those two values effect it.

21C
09-08-2004, 03:10 AM
It's look like the problem has to do with the table. Under the table tag it's set to width="100%". Well, that's not good.

table height="123" width="100%" cellpadding="0" cellspacing="0"

I'm talking about that line. Try setting it width="500" or something like that and see what happens.

EDIT:

Also, the width of the mlb.swf is set at 100 now, up that too about 350 as well. See how changing those two values effect it.
I gave that a try without any luck but you got me looking in the right place.

I changed the mlb.swf width value to 100% and that seemed to fix things. I use the 100% value rather than a fixe width so that it occupies the full window regardless of what size the user actually has.

Thanks for taking the time to help.

gottimd
09-08-2004, 09:56 AM
Check this site out for basic HTML Code help

HTML Help (http://help.yahoo.com/help/us/geo/ghtml/)

Silver Owl
09-08-2004, 02:45 PM
Try changing this line:

cellpadding="0" width="100%" background="img/topbg.jpg"><object


to:

cellpadding="0" width="100%" background="img/topbg.jpg" valign="middle"><object

Its about the 24th line down.

That seemed to work.