How can I create an External page anchor?

labSLAB

New Member
I've designed a website for myself: http://www.labslab.com

In the coding I adding an anchor to the external pages (anchor on main page works fine ex. if you click home when first entering the site it jumps down to the info) I labelled the a href for the anchors http://www.labslab.com/about_us#home with #home being the anchor.

Problem is that the anchor doesn't work when you go to each page ex. if I go to http://www.labslab.com/about_us#home it doesn't jump down automatically to the info.

Does anyone have any ideas on how I can have the site star at the anchor on pages such as the about, portfolio, and contact? Otherwise I will create a new banner for those and remove the flash video.

I hope that makes sense. Any help would be great thanks!

PS. Please disregard the sites music and speed for now, I haven't added a sound on/off button to the flash video yet and the site hasn't been optimized for quick web viewing.

Thanks again!
 

Geodun1

New Member
If it wasn't for your music/etc, I'd check your source again, but I don't remember if you were enclosing the text you were linking to in a <h1> or <h2> tag. If you didn't try the following:

Code:
<a href="aboutus#home">Home</a>

Code:
<h1 id="home">Home</h1>

It's been awhile since I had to do that, but give that one a shot. It should work.

After a second google search, I found another method of achieving this:

Code:
<a href="aboutus#home" />Home</a>

Code:
<a name="home" />Home</a>

You'll have to try each and see which works.
 
Last edited:

biyush

New Member
You may read more about this in <A href="#section2">Section Two</A>.
...later in the document
<H2 id="section2">Section Two</H2>
...later in the document
<P>Please refer to <A href="#section2">Section Two</A> above
for more details.

<A name="a1" id="a1" href="#a1">...</A>

if u want more information contact:
Biyush,
Dream Consultancy Services ,
Phone: 1300 738 438
Int Phone: (+613) 9917 2408
Fax: (+613) 9005 2762
http://www.dreamconsultancy.com.au
Email:[email protected]
 
Top