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

fixed frame width in frontpage 2003 ?

Status
Not open for further replies.

llevix

Technical User
Jun 3, 2004
1
RO
How can I create a framed page in fp 2003, with the first frame with fixed width!!! And when i run it in browser in different windows sizes, that first frame to remain in that fixed width???

Thank a lot.
 
What coding are you using now?

Something like:
Code:
<frameset rows="64,*">
	<frame name="header" scrolling="no" noresize target="main">
	<frame name="main">
	<noframes>
	<body>

	<p>This page uses frames, but your browser doesn't support them.</p>

	</body>
	</noframes>
</frameset>
where 64 is the height of the header frame & then * is whatever is left.

__________________________
Corey

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top