JavaScript submenu support - Frames JavaScript submenu support - Frames
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

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.