Web Hosting Talk







View Full Version : html help needed


zenex5ive
05-01-2002, 11:37 AM
i was wondering if anyone could help me with dis problem. I ain't dat good in html.

Bascially, i created a page using 4 frames (top, bottom, left & right). In 800*600 resolution, its a 600*400 rectangle box. When i change the screen resolution to 1024*768, the frames doesn't stay in the same place. I want it to be in the center. I hope u understand what i am talking abt. its kinda hard 2 explain.

tagalaxy.net
05-01-2002, 12:19 PM
if you want the table to stay in the center of the page, simply put <center> & </center> around them (or if you prefer, <p align="center"> & </p>)

if you want the table to remain the same size in all resolutions do something like this in the table tag..
<table height="500" width="500">

If you want the table to change size depending on your resolution use this in the table tag
<table height="80%" width="60%">

Hope that helped..

edit: fixed a typo