Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Disappearing navigation….might be to do with jquery ??

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #29790
    hal8
    Member

    Hey wots up all.

    I am trying to do a site or my girlfriends hair salon. I was hoping to have a jquery image fade but for some reason the nav disappears when you hover over or near the nav.

    Here is the link

    http://footballsmylife.com/hair.html

    Cheers for looking

    #80671
    djmx2002
    Member

    This is your problem:

    Code:
    $("#slideshow").hover(function() {
    $("ul#nav").fadeIn();
    },
    function() {
    $("ul#nav").fadeOut();
    });

    this code telling jquery to fade the navigation in and out,

    #80673
    hal8
    Member
    "djmx2002" wrote:
    This is your problem:

    Code:
    $("#slideshow").hover(function() {
    $("ul#nav").fadeIn();
    },
    function() {
    $("ul#nav").fadeOut();
    });

    this code telling jquery to fade the navigation in and out,

    doh !!

    cheers dude :D

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.