Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

SmartMenus conflict with SlidesJS

Home Forums Older releases 0.9.x SmartMenus conflict with SlidesJS

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1309
    luis
    Participant

    Hi, I’m trying to build my first JQuery web page. The menus were working ok until I added a picture slide, not showing now the drop down menu.
    The conflict lies in using two different JQuery files: jquery-1.6.4.min.js for the SmartMenus and for the SlideJS

    If I remove the later, the menu works ok, but the slider only shows two of the four pictures included.

    How can this conflict be solved?

    The code is the following: http://pastebin.com/J0fPx2mc

    You can visit the web: http://www.xente.mundo-r.com/turkish/ecomir/index.html

    #1544
    admin
    Keymaster

    Hi,

    You can use just jQuery 1.9.1 but make sure it’s also included before the link to SmartMenus jQuery in the source – i.e. you should have something like this in your source:

    <!-- jQuery -->
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.min.js"></script> 
    
    <!-- SmartMenus jQuery plugin -->
    <script type="text/javascript" src="jquery/jquery.smartmenus.js"></script>
    
    <!-- SlidesJS plugin -->
    <script src="jquery/jquery.slides.min.js"></script>

    Also you will need to set relative position for your main menu and a specific z-index, otherwise the sub menus will not appear properly over your slider – e.g.:

    <ul id="main-menu" class="sm sm-simple" style="position:relative;z-index:100;">...

    Cheers!

    #1546
    luis
    Participant

    Yeah! It works great.
    Thank you very much!

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