What is the html for an image that brings visitors back to the top of my page?

by Saito
2 replies
I know it's called an anchor link, and I know it's such a simple question for those who know html. But I searched over 10 sites on the web and the best I found was how to create a TEXT link.

What I want (in wordpress) is for people to click my yellow "Get Access Now" button that will move them back to the top of the page where they can see the squeeze page form waiting for them.

Can I create a URL somehow to have the image link to?

Or do I need to go in the html editor and enter some mystery code around the image?

Thanks for the help--this is the last thing between me and launching an adwords campaign I worked all night on!
#back #brings #html #image #page #top #visitors
  • Profile picture of the author mightiest
    Literally the first result on Google for "anchor html"

    <a name="tips">...</a>
    For your application, just stick
    Code:
    <a name="top"></a>
    at the top of your page and then use:

    Code:
    <a href="#top">(IMAGE CODE)</a>
    around your image.

    edit #2: Just in case you want to know how to link to an anchor on another page, use
    Code:
    <a href="yoursite.com/whatever.html#anchorname">LINK TEXT</a>
    {{ DiscussionBoard.errors[5694843].message }}
  • Profile picture of the author Sergiu FUNIERU
    Originally Posted by Saito View Post

    What I want (in wordpress) is for people to click my yellow "Get Access Now" button that will move them back to the top of the page where they can see the squeeze page form waiting for them.
    If you like to make the button easier to be seen, this might help:
    http://www.jtricks.com/javascript/na.../floating.html

    Sergiu FUNIERU
    {{ DiscussionBoard.errors[5695488].message }}

Trending Topics