Without actually seeing page and images, I'd say it's kind of hard to tell you what the problems are, but here's my observations.
This image sits above the table
What are the dimensions?
The table is parsed next, it is at least 500 high
Code:
<td width="714" height="500" valign="center">
So it would seem that the combined height of the body would now be image + table.
Since the iframes are absolute positioned, they still display at 120 from the top, but in natural flow would be placed in table under the image, much farther down the page.
A quick test with your code and a 200 X 200 image displays a large blank space under the iFrames, just like you have.
My suggestions, don't use the table, do all positioning with CSS, including image.
But that's just my opinion.
EfV
Without actually seeing page and images, I'd say it's kind of hard to tell you what the problems are, but here's my observations.
This image sits above the table
What are the dimensions?
The table is parsed next, it is at least 500 high
Code:
<td width="714" height="500" valign="center">
So it would seem that the combined height of the body would now be image + table.
Since the iframes are absolute positioned, they still display at 120 from the top, but in natural flow would be placed in table under the image, much farther down the page.
A quick test with your code and a 200 X 200 image displays a large blank space under the iFrames, just like you have.
My suggestions, don't use the table, do all positioning with CSS, including image.
But that's just my opinion.
EfV
can u show me how the css would be done?
o and the dimesnions of the img is 714 x 500 (width x height)
Here is a quick sample of what your CSS might look like and may not be the complete style, just for basic positioning. The margins are not exact but simplly to give you the idea.
Second iframe will be similar to first but diff margins. Give iframe a background color and no content while you work out the positioning, then remove background color and add content (only after all positioning is done). Stick both iframe divs inside main container.
If contents don't fit and you want scroll bar, put overflow:auto in iframe style.
Best wishes,
EfV
Bookmarks