Results 1 to 6 of 6

Thread: Need A Code.

  1. #1
    Join Date
    Mar 2007
    Posts
    24
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Exclamation Need A Code.

    I need a code where once you click on a link on the page it goes down to the middle or bottom of the page anyone know a code for this

    For Instance if you go Here
    and scroll down and click on payment info on the top nav it will take you to the middle of the page

  2. #2
    Join Date
    Jul 2006
    Location
    Canada
    Posts
    2,581
    Thanks
    13
    Thanked 28 Times in 28 Posts

    Default

    You can use page anchors.
    For example, you can link to an anchor using the following syntax:
    Code:
    <a href="#myAnchor">go to myAnchor</a>
    Then place the anchor accordingly on the page:
    Code:
    <a name="myAnchor"></a>
    The link will go to where it's linked anchor is placed on the page.
    - Mike

  3. #3
    Join Date
    Mar 2007
    Posts
    24
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    thanks a lot mburt

  4. #4
    Join Date
    Mar 2007
    Posts
    24
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    wait how do you do it on a image though?

  5. #5
    Join Date
    Mar 2007
    Posts
    24
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    because imaged mapped all the links

  6. #6
    Join Date
    Jul 2006
    Location
    Canada
    Posts
    2,581
    Thanks
    13
    Thanked 28 Times in 28 Posts

    Default

    Code:
    <a name="imageAnchor"><img src="foo"></a>
    - Mike

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
  •