JavaScript submenu support - Frames JavaScript submenu support - Frames
 

News:

CPG Release 1.6.28
added submissions from {406man}
cleaned up a few PHP (8.4) deprecations
fixed PHP deprecation in calendar
removed security vulnerability
(please upgrade when possible)

Main Menu

JavaScript submenu support - Frames

Started by fadedsoul, July 05, 2004, 08:53:39 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

fadedsoul

I was wondering if someone could help me...
On my website I use a top and main frame and control
navigation through a Java script menu. The main menu shows in
the top frame and the submenus show through the main frame (look at www.fadedsoul.com)
I can do this by puting a small piece of code just above the /body statement in the html
for the pages... How/where could I put this in the Coppermine coding to allow my submenus
to be seen when the photo gallery is selected.
Thanks to anyone who can help...

CMV
www.fadedsoul.com

DaMysterious

Quote from: fadedsoul on July 05, 2004, 08:53:39 PM
I was wondering if someone could help me...
On my website I use a top and main frame and control
navigation through a Java script menu. The main menu shows in
the top frame and the submenus show through the main frame (look at www.fadedsoul.com)
I can do this by puting a small piece of code just above the /body statement in the html
for the pages... How/where could I put this in the Coppermine coding to allow my submenus
to be seen when the photo gallery is selected.
Thanks to anyone who can help...

CMV
www.fadedsoul.com

You can do this in theme.php as fom here

// HTML template for main menu
$template_main_menu = <<<EOT
               <span class="topmenu">


til there the main navigation is defined.

EOT;
// HTML template for gallery admin menu
$template_gallery_admin_menu = <<<EOT
DaMysterious.