Results 1 to 3 of 3

Thread: Sitcky Note Script - position!

  1. #1
    Join Date
    Mar 2005
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Sitcky Note Script - position!

    Sitcky NOte Script
    http://www.dynamicdrive.com/dynamici...stickynote.htm


    this is a great script!

    Just wondering if anyone can help... is there any way to position the Sticky NOTE other then in the centre of the page??

    dua_tao

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default Sticky Position

    As far as I can see, there are three lines in the script that apply to the sticky's position. The first two appear together and establish the original spot:

    Code:
    objref.style.left=docwidth/2-objwidth/2+"px"
    objref.style.top=scroll_top+docheight/2-objheight/2+"px"
    the third is later in the script and makes it static at that position when the page is scrolled up and down:

    Code:
    objref.style.top=scroll_top+docheight/2-objheight/2+"px"
    Apparently no attempt is made to fix the position left to right on browsers that will scroll the page left to right. None may be needed, I'm not going to go into that further here.

    To change the initial and subsequent positioning, you only need to change the math in these three statements to reflect your desires. Say you want it to be 50 pixels to the right of center and 60 pixels above center. Here is how the first two statements could be altered (orange bold italics added to show changes):

    Code:
    objref.style.left=(docwidth/2-objwidth/2)-50+"px"
    objref.style.top=(scroll_top+docheight/2-objheight/2)-60+"px"
    I'm not sure the parenthesis are needed but, they will not hurt and make it clearer to the human eye. And similarly to the third statement:

    Code:
    objref.style.top=(scroll_top+docheight/2-objheight/2)-60+"px"
    That should do it.

  3. #3
    Join Date
    Mar 2005
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default sitcky note

    Thanks! it worked like a gem :]

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •