I would like to create an anchor tag that always links from the top of the page to a Flickr photo gallery at the bottom of the page where I would have an anchor called photos.
I created the anchors
<a href="#photos">Photo Gallery</a>
and the anchor tag in the location I want to go to
<a name="photos"></a>
but the link takes me out of the specific permalink page and back to my homepage. (i.e. the tags do not work in WordPress the way they do in html where you do not have to enter a full URL)
Obviously if I want to fix this on the one specific page I could write the full URL, but since I wanted to make this a quick tag that colleagues can insert anywhere quickly, I wanted it to really work as a standard anchor within any page without having to fiddle with getting the full URL each time.. Any suggestions, solutions?