• Hi

    Please look at this example: http://himalayatorquay.co.uk

    click the “Our Menu” link. Please then scroll down the page and see the cart on the right scrolls very smoothly along with you. (note: it might say “we are closed” depending on the time. But it still moves the same)

    How would I do this in wordpress? Is there a plugin? Or any Jscripts I can use.

    Thanks

Viewing 1 replies (of 1 total)
  • You can do something like that with CSS. Create your div and give it position: fixed;

    Then position it with a combination of the necessary top:, bottom:, left:, and right: properties.

    You might end up with something like this:

    div.myfixeddiv {
       position: fixed;
       bottom: 50%;  /* Half way up the page */
       left: 0;      /* All the way left */
    }
Viewing 1 replies (of 1 total)

The topic ‘Make a div scroll down the page while I scroll…’ is closed to new replies.