Menu change Menu change
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Menu change

Started by swiss_man, May 12, 2004, 11:23:03 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

swiss_man

How can I create a aditional button (for example Contact) and how have I to name the Link? And last, what kind of file I need to take for it?

Joachim Müller

edit themes/your_theme/theme.php and look for// HTML template for main menu
$template_main_menu = <<<EOT
                <span class="topmenu">
and add after it
                        <a href="my_link.html" title="my link description">my link text</a> ::

GauGau

swiss_man

and as a new side can make

Casper

Sorry, but I don't understand what you are asking.
Please try to explain fully what you are saying.  Don't worry about how good or bad your English is, we understand many have problems with it.
It has been a long time now since I did my little bit here, and have done no coding or any other such stuff since. I'm back to being a noob here

Joachim Müller

in case your question was "how do I modify this link to open in a new window", here's the answer:
Change<a href="my_link.html" title="my link description">my link text</a>to<a href="my_link.html" title="my link description" target="_blank">my link text</a>This is of course not coppermine related, but pretty ordinary html...

GauGau