• Resolved homeideasinc

    (@homeideasinc)


    I created 4 albums for the showroom for the menu tabs but none of them link to the photos under each album. How can I fix it?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author totalsoft

    (@totalsoft)

    Hello, dear homeideasinc.

    Edit our jquery.quicksand.js file. Find code

    if ($.browser.msie && !window.XMLHttpRequestmsie  || (typeof($.fn.scale) == 'undefined')) {
                // Got IE and want scaling effect? Kiss my ass.
                options.useScaling = false;
            }

    Please edit the code and write like this.

       if (navigator.userAgent.match(/msie [6]/i) && !window.XMLHttpRequestmsie  || (typeof($.fn.scale) == 'undefined')) {
                // Got IE and want scaling effect? Kiss my ass.
                options.useScaling = false;
            }
    Plugin Author totalsoft

    (@totalsoft)

    Edit our jquery.quicksand.js file. Find code

    if ($.browser.msie   && $.browser.version.substr(0,1)<7) {
                    $sourceParent.html('').append($collection);
                    return;
                }

    Please edit the code and write like this.

        if (navigator.userAgent.match(/msie [6]/i) && !window.XMLHttpRequestmsie  && $.browser.version.substr(0,1)<7) {
                    $sourceParent.html('').append($collection);
                    return;

    Thank You.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Menu Tabs are Not Working’ is closed to new replies.