Results 1 to 4 of 4

Thread: Drop Down Menu

  1. #1
    Join Date
    Jun 2007
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Drop Down Menu

    I found a tutorial for drop down menu Here, but I don't know how to put it on my page..

    I made an image for the menu bar, its a vertical bar across the top of my page. I want to make hotspots on the image and make dropdown menus for 5 different topics, that would link to pages relating to those topics

    I.e. Products > Product 1, Product 2, Product 3
    Services > Service 1, Service 2
    ..and so on

    These dropdown menus would be mouseover and the background would be a straight color with a black border...

    I've been playing around with the code on the link at the top, but I can't seem to figure out how to do a mouseover on an image hotspot, someone please help!

    Thanks so much,
    skreamz

  2. #2
    Join Date
    Jun 2007
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Anyone?!

    Please... I'm doing a business website and I want it to look professional, the dropdown menu on mouseover will add that extra kick, and enable me to put up the content I need...

    I found tutorials for dropdown menus, but theres almost no way to customize it, that I know how to do anyways. I'm using one image as a menu bar across the top of my page and I have hotspots over the text.. Is there any way I can do this at all?


    Someone help please!
    -skreamz
    Last edited by skreamz; 06-07-2007 at 04:34 PM.

  3. #3
    Join Date
    Feb 2007
    Posts
    293
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    You would need to make changes to the javascript for the script to work with an image map. Otherwise, the dropdown menu won't display correctly under the appropriate images.
    There's some info here http://www.dynamicdrive.com/forums/a...hp/t-7516.html

    The other thing is, your mage map is pretty simple. You might want to use just single images

    Code:
    <a href="home.htm" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu1, '150px')" onMouseout="delayhidemenu()"><img src="home.gif" style="width:150px; height:50px;border:0;"></a>
    
    <a href="products.htm" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu2, '150px')" onMouseout="delayhidemenu()"><img src="products.gif" style="width:150px; height:50px;border:0;"></a>
    Last edited by Veronica; 06-07-2007 at 04:29 AM.

  4. #4
    Join Date
    Jun 2007
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Ok, I'll give that a try, thankyou

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
  •