Thread: HTML Help
View Single Post
  #3 (permalink)   [ ]
Old 05-28-2008, 04:39 PM
Zero Zero is a male Mexico Zero is offline
I get the job done. Period.
Join Date: Jun 2006
Location: In front of a computer.
View Posts: 688
Re: HTML Help

Quote:
Originally Posted by Shaun View Post
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.
__________________

My BA character Leonidas
There are 10 types of people in the world:
1-Those who read binary.
10-And those who don't.

Quote:
Originally Posted by Romans 14:2
One [man] has faith to eat everything, but the [man] who is weak eats vegetables.
http://world2.knightfight.us?ac=vid&...07292&ref=link

ClICK IT! ^ You know you want to.
Reply With Quote