I'm a graphic designer by training and a first-time programmer, so please be easy on me. I have two questions that I've researched and have been unable to answer. Here is my live site for reference:
http://andychendesign.com/skindeep/
1: I'm trying to get the site to scroll all the way back to the left on page refresh (cmd-R in Safari), so that when you click a name and then try to refresh, the scroll bar doesn't just stay in the same position.
I've tried many options, including this one:
<script language="javascript">
$(document).ready(function() { $('html, body').animate({ scrollLeft : 0 },800); });
}
</script>
but nothing seems to be working.
2: I have little arrows at the bottom of the page that are intended to assist with horizontal navigation once the user has chosen a name. They are controlled by these two functions:
<script>
function goToByScroll2(id){
$('html,body').animate({scrollLeft: $("#"+id).offset().left - 600 },'slow');
}
</script>
<script>
function goToByScroll3(id){
$('html,body').animate({scrollLeft: $("#"+id).offset().left + 600 },'slow');
</script>
Basically, I want the scrolling increment to be the same, but going back and then forward puts me in a different position. I think this is because it's offsetting relative to the id, and I'm not sure what the best way to resolve this is.
Thanks very much for your help.