View Full Version : How do I make it so...


bobbobbobbob
04-08-2004, 02:35 AM
I can hgave one frame on the top for the banner....then a split frame below it. I am not very good with frames.

Code would be nice.


Ill explain it better

The banner on top all in one frame.....then right belo it have a navigation bar to the left in one frame, and the content to the right in another.

salomeyasobko
04-08-2004, 03:43 AM
try this:

<frameset rows="20%,80%">
<frame src="banner.html" name="banner">

<frameset cols="35%, 65%">
<frame src="navigation.html" name="navigation">
<frame src="content.html" name="content">
</frameset>

edit all the bold parts.

the percentages are just how much of the screen each row/column takes up. the first part says that the banner is 20% high and the bottom part is 80% high. then the second part refers to how wide each column is. the way i put it, the navigation is 35% and the content is 65%.. but you can change that to whatever you want it to be [i wasn't sure how wide to make the navigation, so i might've made it too much.]

so, just change those percentages to however big you want each part to be, but keep in mind both parts [together] have to equal 100%.

good luck :)

bobbobbobbob
04-08-2004, 01:09 PM
That worked. But now I have these ugly bars that you can move.

How do I rid of them?

EDIT:
NEver mind...I got rid of it.

bobbobbobbob
04-08-2004, 01:10 PM
NEver mind...I got rid of it.

salomeyasobko
04-09-2004, 06:15 AM
alright, that's good. glad it works :rolleyes: