Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Footer Frame Resizing Issue

Status
Not open for further replies.

christheprogrammer

Programmer
Jul 10, 2000
258
CA
Hi All,
I have designed a page with the following frames: header, footer, contents, and main. The footer has two images, one which should be left justified and one right justified (but on the same horizontal axis). The problem is that when the user resizes their browser window, the right hand image dissapears. How can I make that image float along with the resizing of the browser window so that it never disappears?

Thanks in Advance! Chris
 
You could put the two images in a table, like so:
Code:
<table border=&quot;0&quot; width=&quot;100%&quot;>
  <tr>
    <td align=&quot;left&quot; width=&quot;50%&quot;>
      <img src=&quot;img1.gif&quot;>
    </td>
    <td align=&quot;right&quot; width=&quot;50%&quot;>
      <img src=&quot;img2.gif&quot;>
    </td>
  </tr>
</table>
I usually hate tables for layout, but in this case it's the quickest way to accomplish what you describe.
 
Thanks, pcorreia, I almost had it. I had gotten as far as the table design, but didn't clue into the width=&quot;100%&quot; thing... Cheers on a Friday ! Chris
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top