Website layout, help please?

Soldato
Joined
20 Aug 2003
Posts
6,703
Location
Pembrokeshire
hello all.
OK so, its a clan website, at the moment I have built it entirely with frames. It works ok but under various conditions it is awash with scroll bars (as you would expect).
This is the site in question.

Now, can someone tell me how to get that exact look without using frames?
Also, it needs to work in a similar way, ie the nav, content and team divs need to be seperately configurable/changable so that I dont need to change a dozen pages at a time.
Any ideas? ASP? java? anything. Point me in the right direction and I will learn it myself :)

TIA
 
Everything except Front Page extensions, which cost extra >:(

anyway..
So i can CSS 5 divs and php_include into them all?
 
Last edited:
Thanks for that Inquisitor :D works a treat :)

but I must point out that I quickly found that the correct syntax is
<?php include("menu.php"); ?>
must be bracketed and must end with the semi-colon...:p
 
Actually, include, include_once, require and require_once don't require brackets as they're not actually functions, rather language constructs.

Also, you don't need the semi-colon if it's just a single line of code.

;)
wouldnt work without :(, nevermind, thanks for your help :D
next question is how would i make
Code:
<ul id="navbar">
	<li><a href="#">Item 1</a></li>
	<li><a href="#">Item 2</a></li>
	<li><a href="#">Item 3</a></li>
	<li><a href="#">Item 4</a></li>
	<li><a href="#">Item 5</a></li>
</ul>
work in the same way that it did with frames?
IE, it is set up to load each html page link into the content frame.
 
Last edited:
Back
Top Bottom