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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Frames & Alignament problem

Status
Not open for further replies.

sikarius

Programmer
Dec 11, 2001
63
0
0
ES
Hi everybody !!!

I'm a little newbie :). I have a problem. I'm working in a webpage for my business. I have 4 frames: top, bottom and the middle is divided into 2 frames left & right. Ok, left is a navbar and the right frame is the main frame where all the content is displayed. Well, i want that the 4 frames are center in the page indenpendent the resolution of my screen.

Thanks everybody and sorry my worry english

Certifications:
CCNA, BSCI, MCP

In Progress:
CCNP - Remote Access
 
Use percentages for column and row dimensions.

example:
<frameset rows=&quot;20%,*,20%&quot; frameborder=0 border=0>
<frame src=&quot;r1.htm&quot; name=&quot;TOP&quot; scrolling=&quot;no&quot; />
<frameset cols=&quot;40%,*,&quot; frameborder=0 border=0>
<frame src=&quot;c1.htm&quot; name=&quot;LEFT&quot; scrolling=&quot;no&quot; />
<frame src=&quot;c2.htm&quot; name=&quot;RIGHT&quot; scrolling=&quot;yes&quot; />
</frameset>
<frame src=&quot;r3.htm&quot; name=&quot;BOTTOM&quot; scrolling=&quot;no&quot; />
</frameset>

Clive
 
Thanks a lot!!!!!!!! i have to try it !!!!!! :)

Certifications:
CCNA, BSCI, MCP, BCRAN

In Progress:
CCNP - Switching
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top