|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stay one step ahead of the competition. Evaluate and give feedback
on some of the hottest web development tools on the market today.
Make your opinion heard! Click
Here
|
|
#1
|
|||
|
|||
|
Navigation Bars in FrontPage 2002
Hi,
I want to condence my existing navigation bars on my site, by editing them to where some can be grouped together. For example, when you cursor-over or click on "Meet the Flyers," (which I haven't created yet), it will give you either a drop-down or expanded menu listing "Roster," "Coaches," "Staff," etc. Would anyone know how to do this? Fort Wayne Flyers Thanks in advance! ~Yaz |
|
#2
|
|||
|
|||
|
check out http://wbn.lurkerlordx.com/Technocracy/entry.php
heres the code, you'll need PHP of couse shoud be easy to see where you need to edit it Code:
<?
ini_set('display_errors',0);
echo "Welcome
";
//Thanks To PHP Freaks for the collapsing menu work
if ((isset($_SESSION['menu'])) && (!isset($_GET['menu']))) {
$menu = $_SESSION['menu'];
} elseif (isset($_GET['menu'])) {
if ($_SESSION['menu'] == $_GET['menu']) {
if ($_SESSION['expand'] == 0) {
$expand = 1;
} else {
$expand = 0;
}
} else {
$expand = 1;
}
$_SESSION['expand'] = $expand;
$tmenu = $_GET['menu'];
list($menu,$trash) = explode("?",$tmenu,2);
$_SESSION['menu'] = $menu;
}
$expand = $_SESSION['expand'];
list($earl,$trash) = explode("?",$_SERVER['REQUEST_URI'],2);
?>
Transmission Database
<?php if (($_SESSION['menu'] == "TransmisionDB") && ($expand)) { ?>
Welcome
Rules
FAQ
Rank FAQ
Merits and Flaws
Backgrounds
The Spheres
Abilities
Projects
Memos
History of the Union
<?php } ?>
<A CLASS="menu" HREF="<?php print($earl); ?>?menu=Conventions">
Conventions</A>
<?php if (($_SESSION['menu'] == "Conventions") && ($expand)) { ?>
Welcome
Members
Leaders of the Union
Amalgams
<?php } ?>
<A CLASS="menu" HREF="<?php print($earl); ?>?menu=LocationDB">
Location DB</A>
<?php if (($_SESSION['menu'] == "LocationDB") && ($expand)) { ?>
Welcome
Diefenbakker's Casino
Dominion Consolidated Gaming, Ltd.
Null-B
Commonwealth Trio Laboratory
Acme Pyrotechnic Institute: C.O.R.E.
Divisidero Safe House
Disneyland
Johnson Law
<?php } ?>
<A CLASS="menu" HREF="<?php print($earl); ?>?menu=DeviantDB">
Deviant DB</A>
<?php if (($_SESSION['menu'] == "DeviantDB") && ($expand)) { ?>
Welcome
<?php } ?>
<A CLASS="menu" HREF="<?php print($earl); ?>?menu=TechnologyDB">
Technology DB</A>
<?php if (($_SESSION['menu'] == "TechnologyDB") && ($expand)) { ?>
Welcome
Procedures
Enhancements
Vehicles
Devices
Equipment
Hedge Science
Lifeforms
<?php } ?>
<A CLASS="menu" HREF="<?php print($earl); ?>?menu=Propaganda">
Propaganda</A>
<?php if (($_SESSION['menu'] == "Propaganda") && ($expand)) { ?>
Welcome
Precepts of Damien
Lexicon
Primium FAQ
The Black Suits
MIB Motivational Speech
Quotes
DimSci vs. Spirit
Advertisement: Dev-B-Gone
Progenitor Recruitment Promotion
<?php } ?>
Links
Credits
<?php ini_set('display_errors',1);?>
__________________
24y-CW, 8y-HTML, 5y-PS, 8m-PHP And I never knew Photoshop could do HTML! You learn something every day. http://lexxboard.lurkerlordx.com/listcatagories.php |
|
#3
|
|||
|
|||
|
LLX, thanks for responding, but do you know if there's a function in FrontPage that will allow me to edit my existing nav bars? The example site you provided does not look compatible with my current nav bars.
~YAZ |
![]() |
| Viewing: Tutorialized Forums > Web Design & Development > MS FrontPage > Navigation Bars in FrontPage 2002 |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|
|
|