PDA

Click to See Complete Forum and Search --> : named anchor


deviled egg
02-23-2007, 03:00 PM
If anyone can help me with this, I need to be able to have a link on my home page go to a specific spot mid to the bottom of an interior page in my site.

EC
02-23-2007, 03:57 PM
<a href="#stuff">Link to the stuff</a>

<a name="stuff">Stuff</a>

deviled egg
02-23-2007, 04:33 PM
you know I read that same post and tried it before i posted my inquiry. (something told you would be the one to reply to it) can you check out my site www.dirtind.com, and click on one of the news links toward the top of the page under the the navagation and see maybe what i'm not doing correctly, thanks.

EC
02-23-2007, 04:49 PM
Ok I think ... links in that box should be like, http://www.dirtind.com/item.asp?iid=35#stuff1
http://www.dirtind.com/item.asp?iid=35#stuff2
http://www.dirtind.com/item.asp?iid=35#stuff3

Then at the top of each individual article <a name="stuff1"></a> etc.

chris_bcn
02-23-2007, 05:01 PM
A different way (and one without throwing in superflous anchors that are semantically obtuse)

<a href="one">go to one</a>
<a href="one">go to two</a>

<p id="one">
blah
blah
blah
blah
blah
</p>

<p id="two">
blah
blah
blah
blah
blah
</p>

EC
02-23-2007, 05:14 PM
Superfluously obtuse! I'll get you for that mister.

chris_bcn
02-23-2007, 08:54 PM
haha! :p

Drazan
02-23-2007, 10:09 PM
lol