Re: [WSG] Linking to top of page

2006-02-28 Thread Paul Novitski
At 03:34 PM 2/28/2006, Hill, Tim wrote: a href=#Back to Top/a Is there an issue with using this for screenreaders? Wouldn't they activate this link and nothing would happen? Does this work effectively across browsers to scroll the page to the top though? I've found it works on firefox, ie,

[WSG] Linking to top of page

2006-02-27 Thread Curby
What is the recommended way for linking back to the top of the page? I can't link to the id of my H1 because of my CSS. The name attribute of the A tag is deprecated/removed[1]. And while some people might say use the scrollbar or press Home I'm wondering if anyone has experimented with these:

Re: [WSG] Linking to top of page

2006-02-27 Thread Lachlan Hunt
Curby wrote: What is the recommended way for linking back to the top of the page? I can't link to the id of my H1 because of my CSS. The name attribute of the A tag is deprecated/removed[1]. ... [1] http://www.w3.org/TR/xhtml11/changes.html#a_changes It's only deprecated in XHTML 1.1, which

Re: [WSG] Linking to top of page

2006-02-27 Thread Paul Novitski
At 05:35 AM 2/27/2006, Curby wrote: What is the recommended way for linking back to the top of the page? I can't link to the id of my H1 because of my CSS. Whoa. Stop right there. How can CSS stop you from linking to an h1 that's got an id? Paul

Re: [WSG] Linking to top of page

2006-02-27 Thread Ian Anderson
Curby wrote: What is the recommended way for linking back to the top of the page? I can't link to the id of my H1 because of my CSS. The name attribute of the A tag is deprecated/removed[1]. And while some people might say use the scrollbar or press Home I'm wondering if anyone has experimented

Re: [WSG] Linking to top of page

2006-02-27 Thread Lachlan Hunt
Paul Novitski wrote: At 05:35 AM 2/27/2006, Curby wrote: What is the recommended way for linking back to the top of the page? I can't link to the id of my H1 because of my CSS. Whoa. Stop right there. How can CSS stop you from linking to an h1 that's got an id? It depends where the H1 is

Re: [WSG] Linking to top of page

2006-02-27 Thread Darren West
a href=#Back to Top/a On 27/02/06, Lachlan Hunt [EMAIL PROTECTED] wrote: Paul Novitski wrote: At 05:35 AM 2/27/2006, Curby wrote: What is the recommended way for linking back to the top of the page? I can't link to the id of my H1 because of my CSS. Whoa. Stop right there. How can

Re: [WSG] Linking to top of page

2006-02-27 Thread Ian Anderson
Lachlan Hunt wrote: It depends where the H1 is positioned. If it's not at the top, the page won't be scrolled to the top. If the H1 isn't at the top of the content, then I'd say there's a pretty good case for saying that the H1 is in the wrong place. The top of the content is where it

Re: [WSG] Linking to top of page

2006-02-27 Thread Curby
On 2/27/06, Ian Anderson [EMAIL PROTECTED] wrote: Lachlan Hunt wrote: It depends where the H1 is positioned. If it's not at the top, the page won't be scrolled to the top. If the H1 isn't at the top of the content, then I'd say there's a pretty good case for saying that the H1 is in

Re: [WSG] Linking to top of page

2006-02-27 Thread Ian Anderson
Curby wrote: Lachlan is right, I use image replacement to reposition and stick an image in the upper-lefthand corner of the viewport instead of the normal H1 text. It stays visible in the corner for compatible browsers. Example: http://curby.net/doc/layout/jello-new.html Sorry to

Re: [WSG] Linking to top of page

2006-02-27 Thread Lachlan Hunt
Ian Anderson wrote: Lachlan Hunt wrote: It depends where the H1 is positioned. If it's not at the top, the page won't be scrolled to the top. If the H1 isn't at the top of the content, then I'd say there's a pretty good case for saying that the H1 is in the wrong place. I meant not at

Re: [WSG] Linking to top of page

2006-02-27 Thread Curby
On 2/27/06, Ian Anderson [EMAIL PROTECTED] wrote: Curby wrote: Lachlan is right, I use image replacement to reposition and stick an image in the upper-lefthand corner of the viewport instead of the normal H1 text. It stays visible in the corner for compatible browsers. Example: