Click to See Complete Forum and Search --> : History: back butons


ToYourEscape
01-29-2004, 09:10 PM
I havent really ever used javascript before, only html so I'm not even sure if i need javascript to achieve this..lol. But, I am trying to make a history button to go back one page. I got one to work and all but the text appears underlined as most links do. I was wondering how to alter my code to have it so just the text appears and no underline. An example of what I am trying to achieve is here (http://www.merchland.com)

Below is the code I am using now so if anyone could show the proper code for this i would appreciate it.

<a href="javascript: history.go(-1);">&laquo; back</a></td>

Thanks,
Dave

LindaQ
01-29-2004, 09:20 PM
This can be done easily with a simple bit of coding in the <HEAD> tags. Simply put -
<style type="text/css"><!--
A { text-decoration:none }
--></STYLE>
anywhere within the Head Tags and your problem should be solved.

Linda.

ToYourEscape
01-29-2004, 09:33 PM
Thank you!! It worked perfectly. :)