|
Aleeza and I have been battling infinite scrolling awhile back and then I found out what was wrong and then Aleeza went on hiatus and never released most of her themes.
Anyhow, on request by Kathy, I looked at her theme and tried to see what screwed up the infinite scrolling (it would load the entire page all at once).
So my suspicions were confirmed, as I’ve previously discovered, a div layer outside of the infinite scroll autopagerize class makes the infinite scroll buggy. Here is what you do:
Delete the following:
#muk {width:400px;border-left:50px solid {color:Left Border};position:absolute;left:0px;top:0px;padding:0px;}
And add the bolded text to the following:
.posts {background-color:#fff;width:400px;margin-bottom:5px;padding:5px 5px 5px 0px;border-left:50px solid {color:Left Border};}
And…
body {background-color:#eee;padding:0px;margin:0px;color:{color:Body};font-family:{block:IfConsolasFont}consolas;{/block:IfConsolasFont}{block:IfNotConsolasFont}{font:Body};{/block:IfNotConsolasFont}font-size:10px;background-image:url({Image:Background});background-position:center center;background-attachment:fixed;}
Then, find the following and delete the bolded text:
<div id=”muk”>
{block:IfInfiniteScrolling}
And…
</div>
</BODY>
Anyways, hope that fixed the problem!