iframe positioning

C

Cory

I have an IFRAME located within a cell on my web page, and
I'm having trouble with it. It looks fine on my resolution
(1600x1200)but wehn it is viewed on other resolutions, it
overlaps where I don't want it to. This is probably farely
simple to fix, I'm just kinda new with this stuff. thx in
advance.

here's the url
http://www.geocities.com/corycleaver86/index.htm
 
S

Stefan B Rusynko

Don't mix % and px cell sizes as in
<td width="10%" height="749" rowspan="2">&nbsp;</td>
<td width="80%" background="Images/template.jpg" height="684">
- remove the cell heights (the are inconsistent)
Empty cells will be collapsed as in
<td width="10%" rowspan="2">&nbsp;</td>
- add a transparent gif or 3 spaces as in:
<td width="10%" rowspan="2">&nbsp;&nbsp;</td>
The space bar is not a design tool
- use tables and set your cell alignments

IMHO don't design at 1600 if you use IFrames




| I have an IFRAME located within a cell on my web page, and
| I'm having trouble with it. It looks fine on my resolution
| (1600x1200)but wehn it is viewed on other resolutions, it
| overlaps where I don't want it to. This is probably farely
| simple to fix, I'm just kinda new with this stuff. thx in
| advance.
|
| here's the url
| http://www.geocities.com/corycleaver86/index.htm
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top