Results 1 to 7 of 7

Thread: HV Menu Help

  1. #1
    Join Date
    Feb 2006
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default HV Menu Help

    DD HV Menu Script
    http://www.dynamicdrive.com/dynamici...menu/index.htm

    Hi, I need help with editing the script. I have been able to figure everything out so far, but need to expand the width of the the columns so that all of the text will fit. You can view a screenshot of my problem here: www.radford.edu/~cpund/mark/screenshot.JPG

    Please let me know! Thanks!!

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    From the configuration (exmplmenu_var.js) file's comments:

    Code:
    MenuX=new Array(Text to show, Link, background image (optional), number of sub elements, height, width);
    The only tricky part might be having to set the width for the first (in your example image, the top) item in a given block for it to take effect.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Feb 2006
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks for the help. Now I am having the problem of displaying more than just 5 different items. I need to show at least another 2 but can not get them to come up even though they are in the code. My code with the differnet menus looks like this:
    Code:
    Menu1=new Array("Home","index.html","",0,20,175);
    
    Menu2=new Array("About","#","",2);
    	Menu2_1=new Array("About Me","about.html","",0,20,175);	
    	Menu2_2=new Array("Resume","mark-jones-resume.pdf","",0);
    
    Menu3=new Array("Academic Transcript","#","",3);
    	Menu3_1=new Array("Altavista","http://www.altavista.com","",0,20,175);
    	Menu3_2=new Array("Google","http://www.google.com","",0);
    	Menu3_3=new Array("Yahoo","http://www.yahoo.com","",0);
    
    Menu4=new Array("Complted Courses","#","",4);
    	Menu4_1=new Array("Course 1","http://www.dynamicdrive.com","",0,20,175);
    	Menu4_2=new Array("Course 2","http://www.javascriptkit.com","",0);
    	Menu4_3=new Array("Course 3","http://www.freewarejava.com","",0);
    	Menu4_4=new Array("Course 4","http://www.webreview.com","",0);
    
    Menu5=new Array("Completed Projects","javascript:top.location.href='#'","",1);
    	Menu5_1=new Array("Author\'s Site","http://www.burmees.nl/","",0,20,175);
    
    Menu6=new Array("Student Involvement","#","",0,20,175);
    
    Menu7=new Array("Awards/Achievments","#","",0,20,175);
    How can I get the Menu6 and Menu7 to show up? You can view it at www.radford.edu/~cpund/mark/meu.html

    Thanks.

  4. #4
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Near the top of exmplmenu_var.js:

    Code:
    var NoOffFirstLineMenus=5;// Number of first level items
    You must increase this number to 7, there could be other problems.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  5. #5
    Join Date
    Feb 2006
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    OK that worked nicely. Now I cant get the menu to be in the right area that it needs to be in: www.radford.edu/~cpund/mark/index.html you will notice the menu is on the right side when it needs to be inside of the table where the current links are.

    Any ideas?

  6. #6
    Join Date
    Feb 2006
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Anyone?

  7. #7
    Join Date
    Feb 2006
    Posts
    9
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    ...bump

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •