Back To Start Of Archive
Taken From The Forum: Help & Support for DHTML Menu Version 5+
Forum Topic: Click to view post
Last Updated: Saturday July 14 2012 - 06:07:56
Seperate menu and submenu?
Poster: vejs
Dated: Thursday January 20 2005 - 17:34:22 GMT
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..
Poster: Ruth
Dated: Thursday January 20 2005 - 17:51:17 GMT
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:
<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
That did the trick. Thanks but...
Poster: vejs
Dated: Thursday January 20 2005 - 17:55:55 GMT
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?
links instead of submenus
Poster: vejs
Dated: Thursday January 20 2005 - 17:58:01 GMT
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?
geee. it's so simple..
Poster: vejs
Dated: Thursday January 20 2005 - 18:03:42 GMT
now I just need the link instead of submenu..
Poster: Ruth
Dated: Thursday January 20 2005 - 18:15:51 GMT
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:
<img src=transparent.gif border=0 name=andremenu id=andremenu width="8" height="8"><a href=http://www.serverguiden.dk/undervisning.nu/radgivning.asp>RÅDGIVNING</a>
Ruth
Poster: vejs
Dated: Thursday January 20 2005 - 18:45:48 GMT
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.
Ruth
Code:
<img src=transparent.gif border=0 name=andremenu id=andremenu width="8" height="8"><a href=http://www.serverguiden.dk/undervisning.nu/radgivning.asp>RÅDGIVNING</a>
Ruth
THANKS a MILLION... that's super!!!