oreo619 Posted January 7, 2005 Posted January 7, 2005 On "page1.html" I have a menu bar that I want to make links on. LinkA needs to take the user half way down "page2.html" Internal links havent done too well...this is what I've done so far... <a href="#summary">Click here to go to Summary</a> then half way down page 2.html I have... <a name="summary">The summary part</a> Am I doing something wrong? Quote
TCH-Don Posted January 7, 2005 Posted January 7, 2005 have you tried <a href="page2.html#summary">Click here to go to Summary</a> The way you have it, the link is to an anchor on the current page. Quote
surfdean Posted January 7, 2005 Posted January 7, 2005 On "page1.html" I have a menu bar that I want to make links on. LinkA needs to take the user half way down "page2.html" Internal links havent done too well...this is what I've done so far... <a href="#summary">Click here to go to Summary</a> then half way down page 2.html I have... <a name="summary">The summary part</a> Am I doing something wrong? <{POST_SNAPBACK}> It looks like you need a reference to the page you want, i.e. <a href="page2.html#summary">click and now you'll go to page 2</a> you might want an absolute path as well, i.e. www.CWyourwebsite.com/page2.html#summary hope this helps, dean Quote
oreo619 Posted January 7, 2005 Author Posted January 7, 2005 Yeah thats working alot better..thanks Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.