Unlimited Scroll Area

Working on a site that is integrated with WordPress.

Wanting an unlimited vertical scroll area; right now, it only scrolls through a limited number of posts before stopping.

Page is at Anakha Coman ~ Love Is Here Now!

Thanks!

Do you have a limit set in WordPress on how many posts can appear in that section?

Off Topic:

To be honest, I don’t find that a very usable setup. I wonder if many visitors would really want to scroll endless through a little box like that.

Hi,

I think you need to adjust the height here so that it matches the clip.


#divContainer {
    left: 460px;
    visibility: hidden;
    overflow: hidden;
    width:480px;
    clip: rect(0px,600px,420px,0px);
    position: absolute;
    top: 146px;
 [B]   height:420px;[/B]
}


Be aware that you have included a whole page inside your page including doctype and head tags. If you include a file into the body of a page then you should only include the relevant html and not a whole page.

It also means that you are linking to 2 css files that are almost the same so unless you adjust the correct file the changes will be overwritten.

As Ralph said that scroller is a bit of a pain to use and you can’t get to the end quickly as you could with a normal scroller (or indeed with some of the better JS scrollers out there).