xsamix86 Posted April 23, 2012 Share Posted April 23, 2012 Hi all, hope this is in the correct section :)Just a quick question, I want to be able to make a navigation bar and page jump that go to different sections on the same page. Similar to this: http://petpages.neopets.com/~Raikote#e. Can anyone give me a quick low down on how I can do it.Thanks for any help! :) xx This topic has been edited by a member of staff (Anime).The topic was posted in the wrong area.Please check your user inbox to see if you have been contacted regarding this topic.Per the reason above, this topic has been MOVED from Graphics Help to Computers & Programming. Quote Link to comment Share on other sites More sharing options...
Mouseykins Posted April 23, 2012 Share Posted April 23, 2012 I believe you are looking for page anchors. I'm not 100% certain though. Maybe google how to do page anchors and see if it works, unless someone more knowledgeable with code comes along. :) Quote Link to comment Share on other sites More sharing options...
xsamix86 Posted April 23, 2012 Author Share Posted April 23, 2012 Hi, thanks for your suggestion, but all I seem to be coming across is page jumps. I'm fairly new to this HTML malarky lol :) Quote Link to comment Share on other sites More sharing options...
moni_rawr Posted April 24, 2012 Share Posted April 24, 2012 http://www.neopets.com/~perfectlypunctual I believe this Petpage may help you out a bit. :) Quote Link to comment Share on other sites More sharing options...
redoym Posted April 25, 2012 Share Posted April 25, 2012 They're most commonly called anchors, but can be refered to as page jumps. 1. First you create an anchor link that the person clicks on initially. Here is the HTML code for the anchor link. <a href="#anyword">Jump to any place</a> 2. Next, you need to create a named anchor in the spot that you are going to jump to. This anchor will require the following syntax. <a name="anyword">Jump to this place</a> For example, if I wanted to allow folks to jump from the words "Jump to Bottom" to the bottom of the page I need to create 2 anchors. I need to place an anchor that says "Jump to Bottom" that points to the bottom of the page. The syntax is: <a href="#bottom">Jump to Bottom</a> I also need to create a named anchor at the bottom of the page. The syntax is: <a name="bottom">You're at the bottom!</a> I'm pretty sure this is suppose to be in the Computers and Programming board, but I'm sure it's no worries. :D If you find yourself needing more help, w3schools is always a great resource. http://www.w3schools.../html_links.asp [Edit: Clarification.] Quote Link to comment Share on other sites More sharing options...
xsamix86 Posted April 26, 2012 Author Share Posted April 26, 2012 Thanks to both I will look into it :) Quote Link to comment Share on other sites More sharing options...
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.