No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
10 Posted Topics
hi I have a menu included in all my pages, this is an item of the menu with his own submenu packaging.php' => array( 'text' => 'Package Design', 'submenu' => array('packaging.php#Title0' => array('text' => 'Title0'), 'packaging.php#Title1' => array('text' => 'Title1'), 'packaging.php#Title2' => array('text' => 'Title2'), 'packaging.php#Title3' => array('text' => 'Title3'), … ![]() | |
Hi i have two different menu that are included in all my pages: Top menu and left menu, they have in common the same functions that are stored in the same document "functions.php": <?php // function to draw menu (top and left) function draw_menu($script, $items, $div_id) { // start the … ![]() | |
Hi Third post regarding my menu, i have a menu that is included in all my pages. When the my menu item is clicked it opens a new page and the clicked item changes his color to magenta this, is perfect. Each Item has a submenu the problem starts when … ![]() | |
Hi I have a menu that is included in all my pages. When the menu item is clicked it opens a new page and the clicked item changes his color to magenta this, is perfect. Each Item has a submenu the problem starts when i open one of the submenu … | |
hi i have 30 pages with the same design, the text appears always in the same div so i have 30 different texts with the same div id. Is it possible to include all the text in an external php file not database and call them to appear one by … ![]() | |
Hi i have a menu in an include php file: <div id="menu" > <?php // include functions include_once('includes/functions.php'); // array to hold top menu $top_menu_items = array( 'index.php' => array('text' => 'Home'), 'about.php' => array('text' => 'About'), 'contact.php' => array('text' => 'Contact') ); // call the function that draws the … ![]() | |
Hi how can i tell the submenu to behave as the main menu this is the code for the main menu: if($script == $url) { // if the item in the array is the current page, highlight it $menu .= '<li><a style="color:#eb0089" href="#nogo"> '. $text . ' </a></li>'; } else … | |
HI i have two menu, one on the top and one on the left, they are generated from an outside php file that calls the "list-nav" id style, the problem is that i need to see an image as list-style-image in the left menu and the image is hidden, this … | |
This is my "left menu" it appears as an include in all the pages: <?php // array of pages for the left menu $left_menu_items = array( 'book.php' => 'Book Design', 'identityDesign.php' => 'Identity Design', 'logos.php' => 'Logos', 'packaging.php' => 'Packaging', 'index.php' => 'Selected Projects', ); // start the html string … | |
hi i have two menus that i use as include in index.php file: topmenu and leftmenu I'm using the same code in oder to show the active header switch (THIS_PAGE): Code for the "Top menu include": <?php define('THIS_PAGE', 'pagename'); $menuitem1 = '<a href="index.php">Home</a>'; $menuitem2 = '<a href="about.php">About</a>'; $menuitem3 = '<a … ![]() |
The End.