Kubrick theme - own links in the right menu Kubrick theme - own links in the right menu
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Kubrick theme - own links in the right menu

Started by Joshi, September 19, 2005, 05:54:42 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Joshi

I use the Kubrick theme .. how can i get a on link in the right menu?

@ GauGau .. i have search the board and in google about my question.

Joshi

Für die Nachwelt schreibe ich mal hier hin, wie ich es gemacht habe. Es gibt bestimmt noch ne bessere Lösung, aber das Ergebis zählt.

1. Gehe in den Ordner vom Kubrick Theme.
2. Öffne mit einem Editor die "template.html".
3. Suche folgenden Eintrag:

<div id="sidebar">
<ul>
{MAIN_MENU1}
{MAIN_MENU2}
{ADMIN_MENU}
</ul>
</div>


4. Zwischen die ul Tags kannst Du Dein Menü einbauen.
Siehe hier:

<div id="sidebar">
<ul>
                                                                <li>
                                                                <h2>Überschrift für die Kategorie</h2>
                                                                <ul>
                                                                <li><a href="URL wo es hingehn soll">Link Beschriftung</a></li>
                                                                </ul>
                                                                </li>
{MAIN_MENU1}
{MAIN_MENU2}
{ADMIN_MENU}
</ul>
</div>


5. Viel Spaß.

thefugitivesa

This is pretty much what i am looking for too but i want to have a new menu for additional web links. I have tried editing the various files but can't seem to get it to work properly..

I have now just added the menu in the html file but the links below it are all spaced quite far apart from each other?! Think i am doing something simple really wrong but i am new to web development so still trying to pick it all up..

You can check out the site at www.gotmilk.co.za

Joshi

I would make it soo (sorry about my english).


<div id="sidebar">
<ul>
{MAIN_MENU1}
{MAIN_MENU2}
{ADMIN_MENU}
<li>
<h2>Links Menu</h2>
<ul>
<li><a href="URL">Linktext</a></li>
<li><a href="URL">Linktext</a></li>
</ul>
</li>
</ul>
</div>

Joachim Müller

your English is fine, nobody will blame you if there is a language issue from time to time. Please go ahead posting your contributions in English.

thefugitivesa

Hey Joshi!

Your english is fine!

THX! That worked a like a charm!! All fixed!!