Ok I figured it out.
For anyone with the same problem here’s what I did:
in the header, add
<script type="text/javascript">
function goToAnchor() {
location.href ="#myAnchor";
}
</script>
between the head tags, right after the title.
next change the body tag from
<body <?php body_class(); ?>>
to
<body onload="goToAnchor();" <?php body_class(); ?>>
and then open loop.php and add
<a name="myAnchor"></a>
right before the loop begins.
That’s it! I’m still not exactly sure what I had wrong before
but it’s working now ??