Seems like my horizontal scroller is off by: 8px(firefox) and 7px(chrome,safari) to the left on load.

Resizing this fixes the problem instantly, which is what I want to do on load, the problem is there is a conflict/clash with my jquery tabs gallery.

My temporary fix at the moment is adding $('.container').css('left', '8px'); to the load function, and $('.container').css('left', '0'); to the resize function.

Problem Site: http://jpatrolla.com

Scroller Code:

$(document).ready(function() {
$('a.panel').click(function () {

    $('a.panel').removeClass('selected');
    $(this).addClass('selected');

    if ($(this).attr('href').indexOf('#') != -1) {
        $('#wrapper').scrollTo($(this).attr('href'), 1200);
    } else {
        window.location.href = $(this).attr('href');
    }

    return false;
});
$(window).resize(function () {
    resizePanel();
});

});

Resize Function

function resizePanel() {  
     width = $(window).width();  
     height = $(window).height();  
     mask_width = width * $('.item').length;  
     $('#wrapper, .item').css({width: width, height: height});  
     $('#mask').css({width: mask_width, height: height});  
     $('#wrapper').scrollTo($('a.selected').attr('href'), 0);  
}  

Tab Gallery Code that is conflicting/clashing

$(function(){
$(".image").click(function(){
var image = $(this).attr("rel");
var description = $(this).attr("content");
$('#gallery').hide();
$('#gallery').fadeIn('slow');
$('#image').html('<img src="' + image + '"/>');
$('#description').html(description);
return false;
    });
});

I'm sure there is an easy way around this, but I'm more stronger with design then coding and am self taught at jquery.

Any help/direction will be greatly appreciated!

link|improve this question
Try adding overflow-y: scroll to the body. – Jonas Jan 29 at 11:46
My goodness Jonas you are a savior!!!!!! How in the hell did you figure that out? I honestly thought it was a jquery problem not a CSS. My mind is literally blown. Post it as a reply so I can mark this as answered. Don't mean to sound over-dramatic but from the bottom of my heart and my throbbing head, THANK YOU! – Joseph Patrolla Jan 30 at 7:07
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.