Access keys?

NewToDesign

New Member
Hi everyone,

I am currently designing a website and am trying to code access keys, but I have a problem.

I have a navbar, which has buttons in gif format, which when clicked serve as links. In the code, it looks like this:

Code:
<a href="index.html"><img src="index.gif" alt="Index Page" width="160" height="60" border="0"></a>

Thus, when a user clicks on the gif, they are taken to the index page. However, I also want the user to have the option of doing this with an access key.

I have tried the following alteration

Code:
<a href="index.html" [B]accesskey="9"[/B]><img src="index.gif" alt="Index Page" width="160" height="60" border="0"></a>

But this doesn't seem to work when I test it. Now I am trying to make an access key code for this, but can't seem to do it. Can anyone help me, or point me to a good resource?
 

aswebdesign

New Member
Looks like it should work to me! Are you sure your testing an up to date version of your webpage?

I know i've in the past been testing something over and over again only to realise ie wasn't getting fresh content from my server
 
Top