HighDots Forums  

Critique CSS layout (issues addressed)

Websites/HTML pages critique & reviews Discuss and review existing WWW material (alt.html.critique)


Discuss Critique CSS layout (issues addressed) in the Websites/HTML pages critique & reviews forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
lime
 
Posts: n/a

Default Critique CSS layout (issues addressed) - 11-14-2004 , 11:11 PM






I have addressed most of the issues listed in the responses to my last post
"Critique CSS layout (1st go - fingers crossed)". I'm rapt with the progress
I have made, thanks to all for your past critiques.

http://www.limelightstudio.com.au/iss/8/

The issues addressed:

- Nav uses <li> now
- No horizontal scroll in IE6 at 850-900 pixels
- Nav area not fixed, fluid now
- Added <h#> markup to replace <div>
- Changed CAPS
- Darker body text
- Changed footer layout & colour
- Made nav links different on hover
- Mis-alignment of banner in Opera

It's amazing how much easier CSS layout is when using the correct <h#>
markup....

Note: Links don't go anywhere. Font size has remained the same.



Reply With Quote
  #2  
Old   
rf
 
Posts: n/a

Default Re: Critique CSS layout (issues addressed) - 11-15-2004 , 07:32 AM






lime wrote:

Why do you waste about 20% if my canvas, on the right hand side. Surely the
text could wrap near the right hand side of my window?

--
Cheers
Richard.




Reply With Quote
  #3  
Old   
Martin Bialasinski
 
Posts: n/a

Default Re: Critique CSS layout (issues addressed) - 11-15-2004 , 11:52 AM



"rf" <rf@.invalid> wrote:

Quote:
lime wrote:

http://www.limelightstudio.com.au/iss/8/

Why do you waste about 20% if my canvas, on the right hand side. Surely the
text could wrap near the right hand side of my window?
Limiting the length of a line is not unreasonable. Depending of the
size of the font, the outline of the font, the line height, the
inter-word spacing and the font-stretch, there is a point when lines
get too long for good readability.

You won't find a text printed with a 8pt ultra-condensed font with 1ex
line height on A4 landscape very readable, won't you?

Whether the line width chosen by lime is sensible, is
debatable. First of all, it is not dependant on the font
size. Someone with bad eyesight, who has overridden the font sizes to
something larger, will find it to short.

A better way would be something in the lines of
http://www.uni-koeln.de/~agr30/iss/l...om.auiss8.html

(tested in Opera and Firefox). You can zoom in and out without
destroying to layout (ctrl + Num+ and Num- in Firefox). Maybe lime can
consider something in these lines and reconsider to not touch the
fontsize for the content. Using s smaller size for things like the
page footer is OK, IMHO.

I too find many websites having too small a fontsize. Thanks god,
Opera allows to set a minimum fontsize that can not be overridden by
css (mine is set to 14px, which is also the 100% fontsize I configured).

Bye,
Martin


Reply With Quote
  #4  
Old   
Rijk van Geijtenbeek
 
Posts: n/a

Default Re: Critique CSS layout (issues addressed) - 11-15-2004 , 12:05 PM



On Mon, 15 Nov 2004 12:32:43 GMT, rf <rf@.invalid> wrote:

Quote:
lime wrote:

http://www.limelightstudio.com.au/iss/8/

Why do you waste about 20% if my canvas, on the right hand side. Surely
the text could wrap near the right hand side of my window?
Easy reading? I don't mind at all. Depends a lot on your window size I
suppose, but full length text isn't always a good thing...

Maybe adding:

min-width: 30em;

to the rules for #mmhidemiddlebox might be nice.

--
Rijk van Geijtenbeek

The Web is a procrastination apparatus:
It can absorb as much time as is required to ensure that you
won't get any real work done. - J.Nielsen



Reply With Quote
  #5  
Old   
lime
 
Posts: n/a

Default Re: Critique CSS layout (issues addressed) - 11-15-2004 , 03:55 PM




"rf" wrote in message ...
Quote:
lime wrote:

http://www.limelightstudio.com.au/iss/8/

Why do you waste about 20% if my canvas, on the right hand side. Surely
the
text could wrap near the right hand side of my window?
For you it may be wastage (such a pessimist aren't you ;o)) for me it was
limiting the length of text for readability.




Reply With Quote
  #6  
Old   
lime
 
Posts: n/a

Default Re: Critique CSS layout (issues addressed) - 11-15-2004 , 04:16 PM




"Martin Bialasinski" wrote in message ...
Quote:
lime wrote:

http://www.limelightstudio.com.au/iss/8/

A better way would be something in the lines of
http://www.uni-koeln.de/~agr30/iss/l...om.auiss8.html

(tested in Opera and Firefox). You can zoom in and out without
destroying to layout (ctrl + Num+ and Num- in Firefox). Maybe lime can
consider something in these lines and reconsider to not touch the
fontsize for the content. Using s smaller size for things like the
page footer is OK, IMHO.
Hi Martin, thanks for your effort. I've saved the CSS you've created to have
a more detailed look later on to learn what you have done there.

I agree about the footer text - leaving that smaller and I will do a version
with 100% body text too.

Quote:
I too find many websites having too small a fontsize. Thanks god,
Opera allows to set a minimum fontsize that can not be overridden by
css (mine is set to 14px, which is also the 100% fontsize I configured).

Bye,
Martin



Reply With Quote
  #7  
Old   
lime
 
Posts: n/a

Default Re: Critique CSS layout (issues addressed) - 11-15-2004 , 04:17 PM



"Rijk van Geijtenbeek" wrote in message...
Quote:
rf wrote:

lime wrote:

http://www.limelightstudio.com.au/iss/8/

Why do you waste about 20% if my canvas, on the right hand side. Surely
the text could wrap near the right hand side of my window?

Easy reading? I don't mind at all. Depends a lot on your window size I
suppose, but full length text isn't always a good thing...

Maybe adding:

min-width: 30em;

to the rules for #mmhidemiddlebox might be nice.
I will give that a go as well (I think that's what Martin did in his version
of the page too)




Reply With Quote
  #8  
Old   
Neal
 
Posts: n/a

Default Re: Critique CSS layout (issues addressed) - 11-15-2004 , 08:35 PM



lime wrote:
Quote:
"rf" wrote
Why do you waste about 20% if my canvas, on the right hand side.
For you it may be wastage ... for me it was
limiting the length of text for readability.
Ok. How about your user. What's their viewport size? Hmm?

Answer: You dunno.

So what?


Reply With Quote
  #9  
Old   
lime
 
Posts: n/a

Default Re: Critique CSS layout (issues addressed) - 11-16-2004 , 05:24 PM




"kchayka" wrote in message ...
Quote:
lime wrote:
"rf" wrote in message ...
lime wrote:

http://www.limelightstudio.com.au/iss/8/

Why do you waste about 20% if my canvas, on the right hand side.

For you it may be wastage (such a pessimist aren't you ;o)) for me it was
limiting the length of text for readability.

You must be assuming a certain window size and/or text size. Don't.

With smaller windows, 60% width for the content area can make for
too-short lines of text, which is also a readability problem. Ditto with
larger text sizes. BTW, your body text size is still much too small.

True - you have a point.




Reply With Quote
  #10  
Old   
lime
 
Posts: n/a

Default Re: Critique CSS layout (issues addressed) - 11-16-2004 , 05:25 PM




"Neal" wrote in message :
Quote:
lime wrote:
"rf" wrote
Why do you waste about 20% if my canvas, on the right hand side.
For you it may be wastage ... for me it was
limiting the length of text for readability.

Ok. How about your user. What's their viewport size? Hmm?

Answer: You dunno.
True.

Quote:
So what?
put it back to normal...




Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.