Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1015841
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T10:27:38+00:00 2026-05-16T10:27:38+00:00

I have been reading tutorials from several different places like http://css-tricks.com/scrollfollow-sidebar/ or http://jqueryfordesigners.com/fixed-floating-elements/ and

  • 0

I have been reading tutorials from several different places like http://css-tricks.com/scrollfollow-sidebar/ or http://jqueryfordesigners.com/fixed-floating-elements/
and have been playing around with them but cant seem to figure out how I would be able to add more then just that one sliding box on the page. Any thoughts?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T10:27:39+00:00Added an answer on May 16, 2026 at 10:27 am

    My assumption (from the first example link) is that instead of just having #sidebar stay in view, you want to have another element scroll with the window as well (i.e. logged in user’s details).

    The easiest way would be to add this information to your existing scrolling element:

    <ul id="sidebar">
        <li id="user-details">Name: John Doe<br/>Email: john.doe@gmail.com</li>  
        <!-- remaining links here --> 
    </ul>
    

    However, if you want to scroll two elements with the window:

    <ul id="sidebar">
        <!-- sidebar links --> 
    </ul>
    <ul id="user-details">
        <!-- user details --> 
    </ul>
    

    It would just be a matter of animating both of their margin-top’s inside the $(window).scroll() event handler:

    Edit

    The following code scrolls #sidebar until it reaches 2000px of scroll at which point it stops and scrolls #user-details until it reaches 4000px of scroll:

    // constants for the scrolling
    var offsetSidebar = $("#sidebar").offset();
    var offsetUserDetails = $("#user-details").offset();
    
    // on scroll of window
    $(window).scroll(function() {
        scrollElement($("#sidebar"), offsetSidebar, 2000);
        scrollElement($("#user-details"), offsetUserDetails, 4000);
    });
    
    // handle the scrolling
    function scrollElement(elem, offset, boundary){
        var currOffset = elem.offset();
        if(currOffset.top < boundary && $(window).scrollTop() < boundary){
            if ($(window).scrollTop() > offset.top) {
                elem.stop().animate({marginTop: $(window).scrollTop() - offset.top});
            } else {
                elem.stop().animate({marginTop: 0});
            }
        }
    }
    

    You can see it in action here.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been reading several tutorials and watching some iTube videos to see how
I have been trying to learn from reading tutorials online and stuff but I
I am currently trying to learn Android. Have been reading tutorials and manual for
I have been reading about dependency properties in several books but all have one
I am very new to rails, and from what i have been reading and
Although I have been discouraged from reading the OpenGL redbook, I am still doing
I have been reading a number of tutorials on implementing Structure Map IoC/di into
Hello my StackOverflow friends. I have been doing wxPython tutorials and reading the documentation,
First let me say I'm new to Ajax. I've been reading articles from jquery.com
I have been reading the tutorial Controlling Access to Members of a Class .

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.