Blank frames

admin

Administrator
Staff member
Hi everyone out there! <br />
<br />
I am an amateur HTML-coder (text editor only) who have a homepage at <!-- m --><a class="postlink" href="http://graddfil.tk">http://graddfil.tk</a><!-- m --> . On the homepage, i have a main frameset with three columns. The big one in the middle i use to show my actual site, and the two on the sides only to get the page "from the edges" a bit, to make it more narrow.<br />
<br />
The problem is that the page looks good in 1024x768 full screen, but anything smaller than that makes it look awkward a bit. My question is, how can I fix so that when someone resizes my page, the middle column remains untouched, and the blank frames are the ones changing size?<br />
<br />
If you dont understand, please visit <br />
The Homepage (<!-- m --><a class="postlink" href="http://graddfil.tk">http://graddfil.tk</a><!-- m -->) <br />
and don't run full screen on the browser window and resize it, and you will see what I mean.<br />
<br />
Thanks in advance, Victor Sand<!--content-->for one thing, on 800x600 is is real small, I can imagine it on a 1024 screen. also you have it set as static widths so you need to change that. the first (left) iframe is real big and it is empty. you don't need it that big with nothing in it. I seen them scrunch up but how many people are goin gto make the brwoser that small?<!--content-->But how do I set it so that the blank ones changes frames?<!--content-->well for one you have 2 rows but only use 1 frame<br />
<br />
<frameset rows="*,1" framespacing="0" border="0" frameborder="NO"><br />
<frame src=http://www.htmlforums.com/archive/index.php/"http://hem.passagen.se/victorsand" name="dot_tk_frame_content" scrolling="auto" noresize><br />
</frameset><br />
<br />
then in the other frame, not sure why you are calling a frame within a frmae but anyway.<br />
<br />
<frameset cols="105,*,105" border=0><br />
you want the middle to stay however big then have it a set width<br />
<br />
<frameset cols="*,700,*" border=0><br />
<br />
something like that.<!--content-->thx!<!--content-->
 
Back
Top