Frames

Soldato
Joined
25 Sep 2003
Posts
3,750
Location
Manchester
I'm creating a basic website in html and have done a layout, now I'm stuck trying to figure out how to convert a cell I have made in to a frame area. I made a layout with a table and the center bit is where the pages will change.

Can anyone help over MSN? I'm a Hammer/worldcraft veteran so if anyone is looking to learn or needs help with that maybe we could help each other out?

Cheers.
 
Last edited:
Changed it all now, got another simple (to someone with a brain) problem. Can anyone help for 10 mins over msn?
 
Last edited:
Post your code and you'll get help for free, as well as benefiting the community and not posting a sly job advert which is against the rules.
 
Dj_Jestar said:
Post your code and you'll get help for free, as well as benefiting the community and not posting a sly job advert which is against the rules.

:o

Didn't realise, just needed some help with this as i've been on it all day.

I don't have code as such... Well, I guess there's this:

Code:
<html>
<head>
<title>lime leaf media</title>
<meta http-equiv="Content-Type" content="text/html">
</head>

<frameset cols="1*,600,1*" frameborder="NO" border="0" framespacing="0" rows="*"> 
  <frame name="leftFrame" scrolling="NO" noresize src="html/black.html" marginwidth="0" marginheight="0" frameborder="NO">
  <frameset rows="1*,100*,600*,1*" frameborder="NO" border="0" framespacing="0" cols="*"> 
    <frame name="topFrame" scrolling="NO" noresize src="html/black.html" marginwidth="0" marginheight="0" frameborder="NO" >
    <frame src="html/top.html" scrolling="NO" noresize marginwidth="0" marginheight="0" frameborder="NO" name="top2">
    <frame src="html/main.html" frameborder="NO" marginwidth="0" marginheight="0" name="main">
    <frame src="html/menu.html" marginwidth="0" marginheight="0" scrolling="NO" frameborder="NO" name="bottom">
  </frameset>
  <frame name="mainFrame" src="html/black.html" marginwidth="0" marginheight="0" frameborder="NO">
</frameset>
<noframes><body bgcolor="#F0f0f0">

</body></noframes>
</html>

I'm just trying to make the top bit of the website non changeable when people make the website small. Then i'm trying to make the middle part always touch the top but not squash it. It is allowed to resize though. Then the footer should stay as it is and not resize.

At the moment, the middle bit isn't stuck to the top bit so there's a gap when the browser is maximised. Then when the user resizes it to be small thecenter and top bits both disappear leaving on the footer at the top of the screen :S
 
Last edited:
Back
Top Bottom