Seperate menu and submenu?

Having problems with DHTML Menu? There is usually somebody here who knows the answer.
Post Reply
vejs
Beginner
Beginner
Posts: 9
Joined: Thu Jan 06, 2005 11:16 pm

Seperate menu and submenu?

Post by vejs »

Hi,

How can I make more space between the menu and the submenus?
At http://www.serverguiden.dk/undervisning.nu/ the submenu have no space when moving mouse over the links, but at http://www.undervisning.nu/Final Design/index.htm there is a bigger gap between the menu and submenu..
User avatar
Ruth
 Team
 Team
Posts: 8763
Joined: Thu May 15, 2003 5:02 am
Location: Yucaipa, CA
Contact:

Post by Ruth »

You are using the popmenu function, that function allows positioning using the top and left offset as the 3rd and 4th parameters. There is more information at the methods and functions quick reference guide about the various things you can do in the pop function setup.

Code: Select all

<a href=# onmouseover="popup('partners','partnersmenu',10,-10)" onmouseout=popdown()>HJERTESTARTER</a> 
would place the menu 10 px down and shift it 10 px to the left.


Ruth
vejs
Beginner
Beginner
Posts: 9
Joined: Thu Jan 06, 2005 11:16 pm

That did the trick. Thanks but...

Post by vejs »

if you have a look at http://www.serverguiden.dk/undervisning.nu/

the submenu is now showing further to the left than the menu is. Hov can I correct that?
vejs
Beginner
Beginner
Posts: 9
Joined: Thu Jan 06, 2005 11:16 pm

links instead of submenus

Post by vejs »

At the same address I got RÅDGIVNING and PRISER which doesn't need a submenu, how can I make the menu into a link instead of generating a submenu?
vejs
Beginner
Beginner
Posts: 9
Joined: Thu Jan 06, 2005 11:16 pm

geee. it's so simple..

Post by vejs »

now I just need the link instead of submenu..
User avatar
Ruth
 Team
 Team
Posts: 8763
Joined: Thu May 15, 2003 5:02 am
Location: Yucaipa, CA
Contact:

Post by Ruth »

If you don't want a pop up submenu then just change that to a regular link and get rid of the call for the pop up.

Code: Select all

<img src=transparent.gif border=0 name=andremenu id=andremenu width="8" height="8"><a href="http://websites.milonic.com/serverguiden.dk/undervisning.nu/radgivning.asp>RÅDGIVNING</a> 
Ruth
vejs
Beginner
Beginner
Posts: 9
Joined: Thu Jan 06, 2005 11:16 pm

Post by vejs »

Ruth wrote:If you don't want a pop up submenu then just change that to a regular link and get rid of the call for the pop up.

Code: Select all

<img src=transparent.gif border=0 name=andremenu id=andremenu width="8" height="8"><a href="http://websites.milonic.com/serverguiden.dk/undervisning.nu/radgivning.asp>RÅDGIVNING</a> 
Ruth
THANKS a MILLION... that's super!!!
Post Reply