Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Flash table gaps in Firefox
Old 03-25-2006, 07:17 PM Flash table gaps in Firefox
prioritydev's Avatar
Junior Talker

Posts: 4
Location: Los Angeles
Trades: 0
When I had just a static image for the main picture on this page, it looked fine, but now that I've changed it to flash, the table is leaving a gap at the bottom: http://www.prioritydev.com/site_rem/

It looks fine in IE, but in Firefox, the white gap is still there. There is nothing in the code that is telling the space to be there, and I've been racking my brains trying to figure it out. I've tried to valign my table up and down to mash things together, but no luck.

Any advice?

Thanks.
prioritydev is offline
Reply With Quote
View Public Profile Visit prioritydev's homepage!
 
 
Register now for full access!
Old 03-25-2006, 09:31 PM Re: Flash table gaps in Firefox
vangogh's Avatar
Post Impressionist

Latest Blog Post:
Why Responsive Design?
Posts: 10,815
Name: Steven Bradley
Location: Boulder, Colorado
Trades: 0
Did you get this worked out? It's looking the same to me in both IE and Firefox. Nice site by the way.
__________________
l Search Engine Friendly Web Design |
Please login or register to view this content. Registration is FREE

l Tips On Marketing, SEO, Design, and Development |
Please login or register to view this content. Registration is FREE

l
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
vangogh is offline
Reply With Quote
View Public Profile Visit vangogh's homepage!
 
Old 03-26-2006, 04:36 PM Re: Flash table gaps in Firefox
prioritydev's Avatar
Junior Talker

Posts: 4
Location: Los Angeles
Trades: 0
Hmm. That's very strange that you don't see it on your end. Anyone else NOT seeing the small white space between the flash header and the main body text in FF?

http://www.prioritydev.com/site_rem/
prioritydev is offline
Reply With Quote
View Public Profile Visit prioritydev's homepage!
 
Old 03-26-2006, 07:51 PM Re: Flash table gaps in Firefox
pipers dragon's Avatar
Extreme Talker

Posts: 190
Trades: 0
Youre right, it is off in FF... Can You post your codes here?
pipers dragon is offline
Reply With Quote
View Public Profile
 
Old 03-26-2006, 08:47 PM Re: Flash table gaps in Firefox
prioritydev's Avatar
Junior Talker

Posts: 4
Location: Los Angeles
Trades: 0
Here's the part I'm concerned with:

<!-- flash -->
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center"><div style="margin-top:6px ">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/s...rsion=7,0,19,0" width="802" height="313">
<param name="movie" value="/mv_header2.swf" />
<param name="quality" value="high" />
<embed src="/mv_header2.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="802" height="313"></embed>
</object>
</div>
</td>
</tr>
</table>

<!-- end flash -- there is a space here and there shouldn't be one -->

<table align="center" width="800" height="325" border="0" cellpadding="0" cellspacing="0">
<tr>
<td background="/images/bg_left2.gif" width="1" height="100%" rowspan="3" valign="top"><img src="/images/bg_left2.gif" width="1" height="18"></td>
<td bgcolor="#FFFFFF" width="168" rowspan="3" valign="top" align="left">

<div style=" margin-left:10px; margin-top:10px; margin-right:10px; line-height:13px " class="b">
<div class="blue4" style="margin-left:10px; margin-top:20px; margin-right:10px;" align="center">CASE STUDY</div>
<br />
<center><img src="/images/maritz02.gif" valign="top"></center>
<br />
<div class="blue2" style="margin-left:10px; margin-top:20px; margin-right:10px;" align="center">MARITZ OFFICE BUILDING</div>
<br />
<br />



thanks
prioritydev is offline
Reply With Quote
View Public Profile Visit prioritydev's homepage!
 
Old 03-27-2006, 01:07 AM Re: Flash table gaps in Firefox
vangogh's Avatar
Post Impressionist

Latest Blog Post:
Why Responsive Design?
Posts: 10,815
Name: Steven Bradley
Location: Boulder, Colorado
Trades: 0
Sorry I looked a little closer and do see it. I think the gap is in the object tag. I see it's set to a height of 313px, but I have a hunch the Flash only needs to be 311 or 310. It looked like the space was included in the object tag though and not a space between the object and what's below.

If that's not it try adding some css to your tables so the table below the space has margin-top:0 and the table above the space has margin-bottom:0. The tables may just have some space between them by default.
__________________
l Search Engine Friendly Web Design |
Please login or register to view this content. Registration is FREE

l Tips On Marketing, SEO, Design, and Development |
Please login or register to view this content. Registration is FREE

l
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
vangogh is offline
Reply With Quote
View Public Profile Visit vangogh's homepage!
 
Old 03-28-2006, 01:52 AM Re: Flash table gaps in Firefox
prioritydev's Avatar
Junior Talker

Posts: 4
Location: Los Angeles
Trades: 0
I fixed it!

Of course it was something stupid: I just defined the main table with height and width:


original:

<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center"><div style="margin-top:6px ">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/s...rsion=7,0,19,0" width="802" height="313">......................


fixed:

<table width="802" height="313" align="center" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center"><div style="margin-top:6px ">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/s...rsion=7,0,19,0" width="802" height="313">......................


Thanks for all the input guys!

Last edited by prioritydev; 03-28-2006 at 01:58 AM..
prioritydev is offline
Reply With Quote
View Public Profile Visit prioritydev's homepage!
 
Reply     « Reply to Flash table gaps in Firefox
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.30220 seconds with 12 queries