Well basically the easiest way is to use an html block for your main menu rather than the standard modules block that comes with Nuke standard.
One such block can be found over at
anor's corner and is a pretty standard one that alot of sites use. Of course you would have to go through and edit the links to fit your needs.
Or you can just make your own block by editing the block-sample_block.php that should be in the blocks folder.
It starts out looking like so:
Code:
<?php
/************************************************************************/
/* PHP-NUKE: Web Portal System */
/* =========================== */
/* */
/* Copyright (c) 2002 by Francisco Burzi */
/* http://phpnuke.org */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/************************************************************************/
if (eregi("block-Sample_Block.php",$PHP_SELF)) {
Header("Location: index.php");
die();
}
$content = "Add your content here";
?>
you can edit it to something like:
Code:
<?php
/************************************************************************/
/* PHP-NUKE: Web Portal System */
/* =========================== */
/* */
/* Copyright (c) 2002 by Francisco Burzi */
/* http://phpnuke.org */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/************************************************************************/
if (eregi("block-Sample_Block.php",$PHP_SELF)) {
Header("Location: index.php");
die();
}
//This will make a link for album 1
$content .= "<img src=images/blocks/bullet.gif><a href=\"modules.php?set_albumName=albulm1&op=modload&name=Gallery&file=index&include=view_album.php \">"._ALBUM1."</a>
\n";
//Don't forget to make an entry in your lang file for _ALBUM1 and make it read what you really want the link to say
//This will make a link to album 2
$content .= "<img src=images/blocks/bullet.gif><a href=\"modules.php?set_albumName=albulm2&op=modload&name=Gallery&file=index&include=view_album.php \">"._ALBUM2."</a>
\n";
//Don't forget to make an entry in your lang file for _ALBUM2 and make it read what you really want the link to say
?>
Save that as something like block-Gallery_Links.php then go into your blocks section in the admin and activate that block and volia you should have a little block with two lines in it that are links to album1 and album2. the will also have an image in front of them that I called bullet.gif, you could remove this image if you wanted to or find some cool looking bullet icon that fits your theme and throw that into your images/blocks directory and name it bullet.gif and voila you should have little icons in front of each link as well.
Hope that makes sense for ya if not I am sure mikem can make sense of my gibberish for ya