PDA

View Full Version : HTML Help Pleeease!



SJD
11-02-2009, 07:50 PM
Hi All,

I'm having a slight issue with my html, in that well it doesnt work! I want a top of page link, and was given this html, which I SWEAR worked orginally, but apparently stopped working at some point or something, cus it doenst work now! This is what I'm using, (I think, there could be extra there too, lol) could you tell me where i'm going wrong please?! :confused:

<p>&nbsp;</p>
<a href="http://www.mrsite.co.uk/pagewiz.asp?adva=true&amp;mode=creative&amp;editcurrpage=3 #Top"> Top of page </a>
<p>&nbsp;</p>
</span></span></div>
<span style="font-size: 12pt;"><span style="font-family: Arial;">
</span></span>

Dont get too technical with me or I'll get lost, this is the only html i've used on my site and it doesnt work which about sums it up!

Any help much appreciated!

Thanks!

elzi
11-02-2009, 08:08 PM
Hi, your code is working when I try it.

There are lots of bits of this code that aren't doing anything. The only bit of html that is the link is this:



<a href="http://www.mrsite.co.uk/pagewiz.asp?adva=true&amp;mode=creative&amp;editcurrpage=3 #Top"> Top of page </a>


There is a space in
editcu rr that might stop it working. You could try taking the space out?

In what way is it not working? That the link doesn't appear or that it goes to the wrong page? It links to a 404 error page not found. Is that the problem in which case the page doesn't exist (sorry if that's obvious!)

elzi
11-02-2009, 08:19 PM
I've just realised what you are actually asking! You just want a link to go the the top of the page! doh!

Just try this:


<a href="#Top">Top of page</a>


you will also need a bit of code at the top of the page that this link is linking to


<a name="Top"></a>


Sorry ignore the above post!!! Doh!!!

SJD
11-02-2009, 08:29 PM
:jump::jump::jump:

Awesome, thank you, you're a star!!!!!

Was in the middle of replying to your previous post all upset cus it didnt work, was about to submit then saw new reply, and it WOOOOORRRRKKKKSSSS! [sorry, i'm well chuffed and much appreciatitive!!!]

Thanks very much!

:jump::jump::jump:

elzi
11-02-2009, 09:09 PM
Glad you've got it sorted! :)