Results 1 to 5 of 5

Thread: Which script it is

  1. #1
    Join Date
    Aug 2006
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question Which script it is

    1) Script Title: N/A

    2) Script URL (on DD): www.dynamicdrive.com

    3) Describe problem: I want to know which script dynamic drive is using when we mouse over at the left panel in the content the cell color will be changed i need that script can anyone tell the url for this script or the exact name of the script

  2. #2
    Join Date
    Oct 2006
    Posts
    8
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Image Marker Menu?

    It looks close to Image Marker Menu

    Go to http://www.dynamicdrive.com/style/cs...ker-list-menu/

    You may want to use different arrow images than the ones available on this page.

  3. #3
    Join Date
    Dec 2005
    Location
    Canada
    Posts
    82
    Thanks
    1
    Thanked 0 Times in 0 Posts

    Default

    Or even the Highlight Image Script: http://www.dynamicdrive.com/dynamicindex4/image5.htm
    although it isn't predesigned as like the menu. You could probably just create an individual frame...

  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

    If you mean the highlighting effect on the left column of DD's home page, that can be done with ordinary css. Use the pseudo class hover in the stylesheet on your links to change their color and background-color properties:

    Code:
    a:hover {
    background-color:green;
    color:white;
    }
    If this effect is only for certain links, a class can be added to the selector.
    - John
    ________________________

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

  5. #5
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Yep, like John said, it's actually just a CSS hover effect. The Image Marker Menu produces a similar effect.

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
  •