Adding a bookmark within a page?
naomimaya
Registered Users Posts: 32 Big grins
I am trying to add a bookmark from the top of a page to the bottom, but this doesn't work. Can anyone see what I've done wrong?
top HTML box
Click here to jump to the featured weddings.
At bottom:
Click to open wedding stories
(I've also tried with "name" instead of "id", but neither work)
Thanks
0
Comments
You need to add this to a HTML/CSS block on the top of the page. That is going to be the visible link so people will click the text.
<a href="#featured">Click here to jump to the featured weddings.</a>
You'll need to remove the "~ Featured Wedding Stories ~" title block and use another HTML block:
<h1 id="featured">~ Featured Wedding Stories ~</h1>
Now if a visitor clicks on the 'Click here to jump to the featured weddings' on the top, they are moved to the Featured Wedding Story section.
Images in the Backcountry
My SmugMug Customizations | Adding CSS to Your Site | SEO for the Photographer | Locate Your Page/Widget Number | SmugMug Help Desk
Thanks again Mike! Worked like a charm.