PDA

View Full Version : Menu Module to put Links to.


dleblanc
12-16-2004, 12:47 PM
:confused: I like to add a Module and call it Menu. I want to add links like http://cajunfolk.net whichs is a Online CookBook for my user to go to. How would I set this up? I try reading some of the other forums suggeston but not understanding much.

tomshawk
12-16-2004, 10:47 PM
Start with this addon
http://www.vbadvanced.com/forum/showthread.php?t=1011

In the section where it says

<!-- Begin custom code -->
Your custom code comes here.
<!-- End custom code -->

put this in there

<a href="http://cajunfolk.net/" target="_blank">cajunfolk.net</a>

If you plan on putting a bunch of links in this module, use a <br> at the end of each line so it rolls over into the next line.

Example:

<a href="http://cajunfolk.net/" target="_blank">cajunfolk.net</a><br>
<a href="http://www.tech-unity.com/" target="_blank">Tech-unity.com</a>

The target="_blank" tells the browser to open the link in a new window, so the user does not have to leave your site ;)

In the template where it says "Custom Module 1" Change it to "Menu" like you want ;)

You can see an example at the bottom left of my website called "Partners"

http://www.tech-unity.com

Our Sponsors
 

theMusicMan
12-17-2004, 03:59 AM
Brilliant Tonshawk.... love it.... :)

dleblanc - you could also add another important line such as

<a href="http://www.themouthpiece.com/" target="_blank">theMouthPiece.com</a>

dleblanc
12-17-2004, 07:29 AM
Thanks tomshawk & theMusicMan

I'm learn quick from using IBF to now using VB3 and VBadvanced. I wish I had more knowledge, but I'm self taught and using the forums to find most of my info. What helps is examples like tomshawk displayed.

I also found some help with a Nav Menu module.
:) Tomsahawk example was sweater and quicker. I am headed out to New Orleans this morning and will try changing some of the info with the your suggestions when I get back later today.

Our Sponsors
 

tomshawk
12-17-2004, 09:24 AM
I'm glad to be of help guys ;)