![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Greg G wrote: http://risky-biz.com/new/risky.html I'd like to hear comments. Please make sure to try the "Photos" link. The font-size is smaller than what I already decided is right for me. So small, that I have trouble selecting some of the buttons. |
#3
| |||
| |||
|
|
On Sat, 10 Apr 2004 14:02:11 -0400, Brian usenet3 (AT) julietremblay (DOT) com.invalid> wrote: Greg G wrote: http://risky-biz.com/new/risky.html I'd like to hear comments. Please make sure to try the "Photos" link. The font-size is smaller than what I already decided is right for me. So small, that I have trouble selecting some of the buttons. Thanks. I thought I had taken care of that by defining the button size in "ex" units, so they would expand with a viewer's choice of text size. |
#4
| |||
| |||
|
|
Greg G wrote: http://risky-biz.com/new/risky.html On Sat, 10 Apr 2004, Brian wrote: The font-size is smaller than what I already decided is right for me. So small, that I have trouble selecting some of the buttons. Greg G wrote: I thought I had taken care of that by defining the button size in "ex" units, so they would expand with a viewer's choice of text size. They do expand if I change the text size. But why are you making me change the font size for you particular page? I've made it bigger. How does it look now? Now, I only need to hit <ctrl +> once, instead of twice as before. |
#5
| |||
| |||
|
|
On Sat, 10 Apr 2004 18:20:41 -0400, Brian usenet3 (AT) julietremblay (DOT) com.invalid> wrote: Greg G wrote: http://risky-biz.com/new/risky.html On Sat, 10 Apr 2004, Brian wrote: The font-size is smaller than what I already decided is right for me. So small, that I have trouble selecting some of the buttons. Greg G wrote: I thought I had taken care of that by defining the button size in "ex" units, so they would expand with a viewer's choice of text size. They do expand if I change the text size. But why are you making me change the font size for you particular page? I've made it bigger. How does it look now? Now, I only need to hit <ctrl +> once, instead of twice as before. I'll stick my oar in here. I don't see any problem with small fragments of text (e.g. buttons, figures in tables) being a little smaller than the main body text. I think the text size on the buttons at present (90%) is fine. |
|
(I'd also suggest that anyone who can't read buttons with one or two words on them at 90% might like to consider increasing their default text size a little, because they're probably impeding their ability to read the main text fluently.) However the 'whatis' column is the main body text on this page, and I would definitely set that to 100%. |
|
One other tip: you've got P ALIGN=CENTER A class=navbar HREF="risky.html">Home</A A class=navbar HREF="schedule.html">Club Schedule</A A class=navbar HREF="songs.html">Song List</A etc. You don't need to set class=navbar on every <A>. You can define P class=navbar> and then style the links with .navbar a { background-color : #0000CD; } etc It keeps the HTML shorter and simpler. |
#6
| |||
| |||
|
| http://risky-biz.com/new/risky.html Stephen Poley wrote: I don't see any problem with small fragments of text (e.g. buttons, figures in tables) being a little smaller than the main body text. I think the text size on the buttons at present (90%) is fine. Perhaps. But then the author should consider the difficulty of selecting a button when they are so small. Take a look at the number buttons on the photo page. http://risky-biz.com/new/jfpics.html It may be a result of my carpal tunnel syndrome, but I find it difficult to quickly select a number on that page. |
#7
| |||
| |||
|
| http://risky-biz.com/new/risky.html Stephen Poley wrote: I don't see any problem with small fragments of text (e.g. buttons, figures in tables) being a little smaller than the main body text. I think the text size on the buttons at present (90%) is fine. Perhaps. But then the author should consider the difficulty of selecting a button when they are so small. Take a look at the number buttons on the photo page. http://risky-biz.com/new/jfpics.html |
|
It may be a result of my carpal tunnel syndrome, but I find it difficult to quickly select a number on that page. The easiest solution is to make the font size 100%. Some padding might be more effective still. (I'd also suggest that anyone who can't read buttons with one or two words on them at 90% might like to consider increasing their default text size a little, because they're probably impeding their ability to read the main text fluently.) I can tell you that I have *no* trouble reading text when authors don't make the font smaller. My own pages are, if anything, a bit too big for me, but going down 1 pixel makes it a bit too small, and I'd rather err in the other direction. However the 'whatis' column is the main body text on this page, and I would definitely set that to 100%. Yes, I did notice that, and was commenting on small text on the page in general, but I may not have made that clear enough. |
#8
| |||
| |||
|
|
I've made it bigger. How does it look now? Greg I would say too small - in comparison with the rest of the page - also a |
#9
| |||
| |||
|
|
Greg wrote: Brian wrote... the author should consider the difficulty of selecting a button when they are so small. Take a look at the number buttons on the photo page. http://risky-biz.com/new/jfpics.html I'm surprised you are having a problem with that. You can select any area of the "button", not just the number label on it. On your browser the whole button is hard to select? I have no idea what you mean. Is "whole button" supposed to indicate that they are really big, when I find the opposite to be true? Since there is no padding, and the border of the button is essentially shrink wrapped to the number, and the links are inline (not display: block), and they are displayed one right after the other -- because of all that, yes, they are hard to select. |
#10
| ||||||
| ||||||
|
|
Greg G wrote: http://risky-biz.com/new/jfpics.html My CSS knowledge is certainly incomplete, so maybe something I'm doing doesn't apear the same on your system. My system is Mozilla. And when you mentioned a width, I imagined it was on the a element, which is inline, and guessed what the problem might be. Well, I just had a look at your code, and I was right. Let's start at the beginning. |
|
There's no doc type declaration. http://www.w3.org/TR/REC-html40/struct/global.html |
|
This is a sytax error. http://validator.w3.org/check?uri=ht...ew/jfpics.html And it causes browsers to go into "quirks mode." http://gutfeldt.ch/matthias/articles/doctypeswitch.html From your css: A.navbar { width : 15.5ex; } In standards mode, you cannot set a width on inline elements. http://www.w3.org/TR/REC-CSS2/visude...#propdef-width |
|
Opera and IE let you do this because you are in quirks mode. Mozilla, suprisingly, does not. Mozilla also has "quirks mode," and I thought setting widths of inline elements, contrary to the spec, was allowed. Apparently not. You have bigger problems then your css. I'd forget the css, and fix the markup errors first. From your html: P ALIGN=CENTER A class=navbar HREF="risky.html">Home</A A class=navbar HREF="schedule.html">Club Schedule</A !-- snip -- br span class=navphoto>Photo Pages</span A class=navphoto HREF="jfpics.html">1</A A class=navphoto HREF="jfpics2.html">2</A A class=navphoto HREF="jfpics3.html">3</A !-- snip -- /p This is not a paragraph, is it? Then why mark it up as such? Use <div if nothing is more appropriate. Most people here use list markup (<ul li>) for lists of links. That may or may not be the right choice -- as J. Korpela has pointed out, you can make everything a list if you go down that route -- but <p> markup is certainly wrong. |
|
Also, you have no alt attribute for your images. This is required by the dtd, and for good reason. What does a blind person get from that page? A Lynx user? How about Googlebot? |

|
And what's with the align attribute? If you're going css, then use css to text-align: center the navigation. You can simplify things, too, but I don't want to push too much on you at once. Fix the problems, then work on more graceful code. |

![]() |
| Thread Tools | |
| Display Modes | |
| |