Quote:
Originally Posted by Shaun
Okay... by menu, do you mean navigation? This code will do:
Code:
<strong>Number 1</strong>
<ul>
<li>Option 1</li>
<li>Option 2</li>
<li>Option 3</li>
<li>Option 4</li>
<li>Option 5</li>
</ul>
Just do that with the amount of menus you need. If you're doing multiple pages, I'd suggest putting it in a navigation.php file, then including it on the page:
PHP Code:
<?php include("navigation.php"); ?>
EDIT: Just to give you an idea of what the page might be like (providing I've understood your questions xD):
Code:
<html>
<head>
<title>Test Page</title>
</head>
<body>
<p>Lorem ipsum dolor, et cetera.</p>
<div id="navigation">
<?php include("navigation.php"); ?>
</div>
</body>
</html>
|
Sorry, I just don't know how to call them. Anyway, those are not the ones I'm after.
See the top of this page? Do you see tha part where the options of "User CP, Gallery, Information," Etc,etc,etc.?
I need those kinds of menus. I alrady teid looking at the code of the page, but I can't find that specific part of the code.