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!