SkipLink control

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

Please do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.

This forum is for discussing mojoPortal development

This forum is only for questions or discussions about working with the mojoPortal source code in Visual Studio, obtaining the source code from the repository, developing custom features, etc. If your question is not along these lines this is not the right forum. Please try to post your question in the appropriate forum.

You can monitor commits to the repository from this page. We also recommend developers to subscribe to email notifications in the developer forum as occasionally important things are announced.

Before posting questions here you might want to review the developer documentation.

Do not post questions about design, CSS, or skinning here. Use the Help With Skins Forum for those questions.
This thread is closed to new posts. You must sign in to post in the forums.
5/3/2007 11:10:35 AM
Gravatar
Total Posts 488

SkipLink control

Is SkipLink control somehow used or just legacy?

According to Visual Studio search results, it is only used in \App_MasterPages\layout.Master, and in no skins.

5/3/2007 11:40:54 AM
Gravatar
Total Posts 18439

Re: SkipLink control

It is in fact used in layout.Master in every included skin and is not legacy.

Its an accessibility feature. google "skip links" if you want to know more.

Joe

 

5/3/2007 12:03:55 PM
Gravatar
Total Posts 488

Re: SkipLink control

It really is.

But in the skin I use (subblue) it is not shown as there is the following line in style.css:

.skiplink {display:none}

I have never seen this functionality working. Could you please explain me where (in what skin?) I can find it? I need this to translate the corresponding label in the resource file.

 

5/3/2007 12:35:39 PM
Gravatar
Total Posts 18439

Re: SkipLink control

Hiding it using CSS is part of the implementation of skip links, its only useful in browsers where css is not supported or is disabled. In that case the site navigation is typically a lot of content at the top and skiplink is an anchor to jump down the page past the navigation to get to the main content of the page.

See tutorial here:

http://diveintoaccessibility.org/day_11_skipping_over_navigation_links.html

and if you look at a site using the Lynx viewer, you can see it with no CSS, the idea is to have an anchor tag to jump past all the navigation links

If you go here:

http://www.delorie.com/web/lynxview.html

and view www.mojoportal.com you can see what it would look like in the Lynx browser which is a no css browser. Though you can't actually test the skip link itself unless you really use Lynx browser or something similar.

Joe

5/3/2007 12:37:54 PM
Gravatar
Total Posts 488

Re: SkipLink control

Thanks.

You must sign in to post in the forums. This thread is closed to new posts.