I am trying to get my website to load up at the bottom of the page...
Maybe this can be done with css, or javascript... I dont know.

You can use something similar to this to determine when you're close to the bottom:

if  ( ($(document).height() - $(window).height()) - $(window).scrollTop() < 300 ){
    //code
}

You can alter the 300 part to trigger the code at different places. From there you just need to add in the code that will diplay the next piece of content, presumably an AJAX call to retrieve the next set of data.
If you intend on having a lot of content getting added several times then the 300 will need to be a variable that you can increase after each AJAX call as the document.height keeps increasing.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.