![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
? Description of images When viewed in Lynx (or Moz with no pictures), there is no indication that the alt text for a picture is actually the alt text for a picture, which sort of means that the alt text should always start with some delimiter then "A picture of...". Is there a general view on this? |
|
? Use of H1 as an invisible structure guide I've used H1 to identify the structure between Header, Content and Footer areas within the page. However, I set it to invisible because the structure is visibly clear with the css. However, with no css, the structure is still clear. None-the-less, I suspect this (invisible h1) may be frowned upon. |
|
? Link to Content at top of page It occurs to me that, the right way would be to have the real content precede everything else on the page, and this would be the conclusive reason why tables should not be used for layout. |
#3
| |||
| |||
|
|
John Robin Devany wrote: [snip] |
| ? Use of H1 as an invisible structure guide I've used H1 to identify the structure between Header, Content and Footer areas within the page. However, I set it to invisible because the structure is visibly clear with the css. However, with no css, the structure is still clear. None-the-less, I suspect this (invisible h1) may be frowned upon. Invisible h1? H1 is one of the most important things to have, making it invisible might even get you banned in Search engines. I don't exactly understand why you do it but unless you have a great reason, why not just make it look less important via CSS...? It's only invisible in the sense that it has no size, i.e. 'invisible' |
#4
| |||||||||
| |||||||||
|
|
Hello ciwas world. |
| http://v29.southbucksrda.org (I've been running the site through Watchfire Bobby 5.0 and CSE HTML Validator Pro V6.0. Testing with Moz 1.5, IE6, IE5, Lynx, K-Meleon 0.7 and IBM Home Page Reader 3.0) |
|
? The navigation structure. |
| ? Description of images When viewed in Lynx (or Moz with no pictures), there is no indication that the alt text for a picture is actually the alt text for a picture, which sort of means that the alt text should always start with some delimiter then "A picture of...". Is there a general view on this? |
|
? Use of H1 as an invisible structure guide I've used H1 to identify the structure between Header, Content and Footer areas within the page. |
|
However, I set it to invisible because the structure is visibly clear with the css. However, with no css, the structure is still clear. None-the-less, I suspect this (invisible h1) may be frowned upon. |
| ? Link to Content at top of page It occurs to me that, the right way would be to have the real content precede everything else on the page, and this would be the conclusive reason why tables should not be used for layout. |
|
? Whitespace used to separate links. I've noticed a technique of using invisible divs to hold some separator, and thought that this would be the thing to use, but it seems a bit clanky - any other suggestions? |
|
! Use of height and width for images. I can't explain what makes me uncomfortable about using these, so I'll keep shtum until I do (or not). |
#5
| |||
| |||
|
|
snip http://v29.southbucksrda.org (I've been running the site through Watchfire Bobby 5.0 and CSE HTML Validator Pro V6.0. Testing with Moz 1.5, IE6, IE5, Lynx, K-Meleon 0.7 and IBM Home Page Reader 3.0) Don't believe what they try and tell you - CSE is a linter, not a validator. That's not to say you shouldn't use it at all, but you should use a validator as well. http://validator.w3.org/ http://jigsaw.w3.org/css-validator/ Your site doesn't validate. ;-) |
|
Bobby can be a useful tool, but make sure you really understand what you are doing; don't just take Bobby's word as gospel. In addition to the above, I'd recommend you also test (if you can) on at least one version of Opera, IE for the Mac, and one browser based on the KHTML engine (e.g. Konqueror, Safari). ? The navigation structure. The "Map" link should probably be "Site Map" or similar - I assumed it was a map of your geographical location. :-) |
|
more snipping ? Whitespace used to separate links. I've noticed a technique of using invisible divs to hold some separator, and thought that this would be the thing to use, but it seems a bit clanky - any other suggestions? Padding and/or margin in your CSS. |
#6
| |||
| |||
|
| http://v29.southbucksrda.org -------------------------------------- snip ? Use of H1 as an invisible structure guide I've used H1 to identify the structure between Header, Content and Footer areas within the page. However, I set it to invisible because the structure is visibly clear with the css. However, with no css, the structure is still clear. None-the-less, I suspect this (invisible h1) may be frowned upon. Invisible h1? H1 is one of the most important things to have, making it invisible might even get you banned in Search engines. I don't exactly understand why you do it but unless you have a great reason, why not just make it look less important via CSS...? It's only invisible in the sense that it has no size, i.e. 'invisible' to the eye, but not to a HTML reader. (Glad to see that you know that display:none won't work in most screen-readers/voice-browsers) The idea works OK in practice, but I think I'd prefer to see real headers in their place. I also like to think of the organisation of the page as a tree structure -- which means only one <H1>. |
#7
| |||
| |||
|
|
John Robin Devany wrote: ? Description of images When viewed in Lynx (or Moz with no pictures), there is no indication that the alt text for a picture is actually the alt text for a picture, which sort of means that the alt text should always start with some delimiter then "A picture of...". Is there a general view on this? The alt-text is not a description of an image. And the use of the alt-text is not to educate the reader that there was/ is an image. (This can be one use of alt-text, yes.) Mostly the alt-text should just replace the image with text (or nothing) in ways that no relevant information is lost. If the image contains crucial information you don't otherwise reference in your text, you absolutely must include it in the alt-text... or simply rewrite your text so that it contains the crucial data (that's what I mostly do, since even though I can see an image with my browser, I might want to go through an additional information text on it to get a clearer idea). If in doubt, better leave the alt empty (alt="") than writing something like "Image of a logo", "Logo", etc. In some cases it also makes sense to use alt="[bla]". And don't forget about the title-attribute. If you're going all the way, you might even want to look into the longdesc attribute. But my opinion is that if the information is that important it should sit there on the page within some <p> or something. |
#8
| |||
| |||
|
|
? Whitespace used to separate links. I've noticed a technique of using invisible divs to hold some separator, and thought that this would be the thing to use, but it seems a bit clanky - any other suggestions? |
#9
| |||
| |||
|
|
I think I misread this the first time around - I understand where you are coming from now. :-) Looking at it in Lynx, there is just a single space between each link in your menu, same as between any 2 words. Something else between each link, styled display:none; would be the best bet, unfortunately (I'd suggest <span>s rather than <div>s). Yes, it seems a bit of a kludge, but I don't know of any better way to do it. |
#10
| |||
| |||
|
|
On Wed, 12 Nov 2003, Mark Parnell wrote: I think I misread this the first time around - I understand where you are coming from now. :-) Looking at it in Lynx, there is just a single space between each link in your menu, same as between any 2 words. Something else between each link, styled display:none; would be the best bet, unfortunately (I'd suggest <span>s rather than <div>s). Yes, it seems a bit of a kludge, but I don't know of any better way to do it. I know a _different_ way, though whether it's any _better_ is debatable. I find neither of them entirely appealing, but what I actually used between two menu-ish links is like: |
urple /*or something*/;background:white}![]() |
| Thread Tools | |
| Display Modes | |
| |