Results 1 to 5 of 5

Thread: problem with rollover images for overlapping content script

  1. #1
    Join Date
    Jun 2008
    Posts
    40
    Thanks
    9
    Thanked 0 Times in 0 Posts

    Question problem with rollover images for overlapping content script

    1) Script Title: Drop Down/ Overlapping Content

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...lapcontent.htm

    3) Describe problem: please visit this page to see the problem:
    http://72.44.80.146/~wat/test/test.html


    i basically want the image to stay on "onstate" as long as the hidden menu is shown.



    * FYI, i am using javascript for image rollover. class="rollover" makes the image rollover.

    thank you for your help.

  2. #2
    Join Date
    Oct 2008
    Location
    Sweden
    Posts
    2,023
    Thanks
    17
    Thanked 319 Times in 318 Posts
    Blog Entries
    3

  3. #3
    Join Date
    Jun 2008
    Posts
    40
    Thanks
    9
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by Snookerman View Post
    that sample is not using images, my code is not using unordered lists.

    so i don't think that will help me.
    thank you for your time.

  4. #4
    Join Date
    Oct 2008
    Location
    Sweden
    Posts
    2,023
    Thanks
    17
    Thanked 319 Times in 318 Posts
    Blog Entries
    3

    Default

    That could easily be rewritten to work with your menu.
    Code:
    .jqueryslidemenu ul li:hover > a {
    	background:#0099FF;
    	color:#FF9966;
    }
    The background color could be changed to background image and the list items could be changed to div containers or span or tables:
    Code:
    .ny2menu something:hover > a {
    	background-image:url(hover.jpg);
    }

  5. #5
    Join Date
    Jun 2008
    Posts
    40
    Thanks
    9
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by Snookerman View Post
    That could easily be rewritten to work with your menu.
    Code:
    .jqueryslidemenu ul li:hover > a {
    	background:#0099FF;
    	color:#FF9966;
    }
    The background color could be changed to background image and the list items could be changed to div containers or span or tables:
    Code:
    .ny2menu something:hover > a {
    	background-image:url(hover.jpg);
    }

    the problem is, i have the use png images, and none of the png fixes for ie6 have a solution for backround image hovers.

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
  •