Log in

View Full Version : frames - want to add side colums to four rows



aliasjanedoe
03-17-2007, 08:05 AM
I have a frames site with four rows. I want to add a small column to each side so my site is more in the center rather than touching the edges of the browser. How do I do this? This is what I have now.


<frameset rows="120,*,100,40" frameborder="no" border="0" framespacing="0">

<frame src="frames/top.html" name="topFrame" noresize="noresize" scrolling="no">
<frame src="frames/image.html" name="image" noresize="noresize" scrolling="no">
<frame src="frames/thumbs.html" name="thumbs">
<frame src="frames/bottom.html" name="bottomFrame" noresize="noresize" scrolling="no">

</FRAMESET>

chechu
03-19-2007, 11:19 AM
just add a col on both sides, and fill it with the background you choose.
Guess it should look something like this:



<FRAMESET COLS=",10,*,10" BORDER=1 FRAMEBORDER=1>
<FRAME SRC="nothing.html" NAME="navigation" SCROLLING=NO>
<frameset rows="120,*,100,40" frameborder="no" border="0" framespacing="0">
<frame src="frames/top.html" name="topFrame" noresize="noresize" scrolling="no">
<frame src="frames/image.html" name="image" noresize="noresize" scrolling="no">
<frame src="frames/thumbs.html" name="thumbs">
<frame src="frames/bottom.html" name="bottomFrame" noresize="noresize" scrolling="no">
</FRAMESET>
<FRAME SRC="nothing.html" NAME="content" SCROLLING=YES>
</FRAMESET>