473,386 Members | 1,801 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Left-handed pages

Can anyone comment on the frequency (prevalence?) of pages
that are stacked on the left?

I see it as a concession to 800x600 screens. OK. But is there
a way of using the full 1024x768 or larger screens without
forcing horizontal scrolling on smaller screens?

I'm seeing 17" monitors going to waste.

Mason C
Jul 21 '05 #1
8 1699
Mason A. Clark wrote:
Can anyone comment on the frequency (prevalence?) of pages that are
stacked on the left?

I see it as a concession to 800x600 screens. OK. But is there a
way of using the full 1024x768 or larger screens without forcing
horizontal scrolling on smaller screens?
It's called flexible design. Fluid layouts.

Like:
http://www.benmeadowcroft.com/webdev...s/spider1.html
I'm seeing 17" monitors going to waste.


Only when the developer doesn't know how to do fluid layout.

--
-bts
-This space intentionally left blank.
Jul 21 '05 #2
On Sat, 25 Jun 2005 23:13:06 GMT, "Beauregard T. Shagnasty"
<a.*********@example.invalid> wrote:
Mason A. Clark wrote:
Can anyone comment on the frequency (prevalence?) of pages that are
stacked on the left?

I see it as a concession to 800x600 screens. OK. But is there a
way of using the full 1024x768 or larger screens without forcing
horizontal scrolling on smaller screens?


It's called flexible design. Fluid layouts.

Like:
http://www.benmeadowcroft.com/webdev...s/spider1.html
I'm seeing 17" monitors going to waste.


Only when the developer doesn't know how to do fluid layout.


I like your site and templates. Thanks.

My problem: the need to keep text narrow for readability but
place it aesthetically on the screen. This means *not* using
the full 1024 width. Instead text only 500 wide. It would be
nice to have it in the center.

Conflicting thinking he has. Head his not screwed right.

Mason C

Jul 21 '05 #3
Els
Mason A. Clark wrote:
On Sat, 25 Jun 2005 23:13:06 GMT, "Beauregard T. Shagnasty"
<a.*********@example.invalid> wrote:
Mason A. Clark wrote:
Can anyone comment on the frequency (prevalence?) of pages that are
stacked on the left?

I see it as a concession to 800x600 screens. OK. But is there a
way of using the full 1024x768 or larger screens without forcing
horizontal scrolling on smaller screens?


It's called flexible design. Fluid layouts.

Like:
http://www.benmeadowcroft.com/webdev...s/spider1.html
I'm seeing 17" monitors going to waste.


Only when the developer doesn't know how to do fluid layout.


I like your site and templates. Thanks.

My problem: the need to keep text narrow for readability but
place it aesthetically on the screen. This means *not* using
the full 1024 width. Instead text only 500 wide. It would be
nice to have it in the center.


Set a max-width in ems, not pixels. (You don't want to force someone
who needs very large fonts to have 3 words per line only)

Then center the page to avoid the stacking on the left.

--
Els http://locusmeus.com/
Sonhos vem. Sonhos vão. O resto é imperfeito.
- Renato Russo -
Jul 21 '05 #4
Mason A. Clark wrote:
On Sat, 25 Jun 2005 23:13:06 GMT, "Beauregard T. Shagnasty"
<a.*********@example.invalid> wrote:
Like:
http://www.benmeadowcroft.com/webdev...s/spider1.html
I'm seeing 17" monitors going to waste.
Only when the developer doesn't know how to do fluid layout.


I like your site and templates. Thanks.


Credit where due: those are Ben Meadowcroft's templates, not mine.
My problem: the need to keep text narrow for readability but place
it aesthetically on the screen. This means *not* using the full
1024 width. Instead text only 500 wide. It would be nice to have
it in the center.
Then set an appropriate width in ems for a column. Or max-width as Els
suggested (not supported in the Microsoft browser component). Here is
a page of mine that illustrates max-width, and how IE overlooks it:
http://home.rochester.rr.com/bshagnasty/tips.html

But, you just complained of too much unused space in larger monitors.
Now you want to restrict the width of the page?
Conflicting thinking he has. Head his not screwed right.


Ah. Yes...

--
-bts
-This space intentionally left blank.
Jul 21 '05 #5
On Sun, 26 Jun 2005, Mason A. Clark wrote:
the full 1024 width. Instead text only 500 wide.
500 what? The only meaningful unit for sizing text in a generic web
context is the em unit. CSS size specifications are in general
invalid (and required to be ignored by a properly-behaved client
agent) in the absence of a proper unit specification. Any client
agent which guesses what unit was intended is in a state of sin (MS
failed to learn this lesson from their CSS disaster in IE3, but this
is only one instance of their disregard for interworking
specifications).
It would be nice to have it in the center.


It depends. Speaking in general terms, without reference to any
specific design that you might have in mind, it could be nice (if
there's space available) to float some other part of the content into
any remaining space. It's nasty, on the other hand, to *force* some
other part of the content alongside (as so many present-day pages do)
without having any idea of the width of the readers' various viewport
sizes, and risking left/right scrolling - something which users report
to be extremely irksome.
Jul 21 '05 #6
Mason A. Clark wrote:
On Sat, 25 Jun 2005 23:13:06 GMT, "Beauregard T. Shagnasty"
<a.*********@example.invalid> wrote:

Mason A. Clark wrote:
Can anyone comment on the frequency (prevalence?) of pages that are
stacked on the left?

I see it as a concession to 800x600 screens. OK. But is there a
way of using the full 1024x768 or larger screens without forcing
horizontal scrolling on smaller screens?


It's called flexible design. Fluid layouts.

Like:
http://www.benmeadowcroft.com/webdev...s/spider1.html

I'm seeing 17" monitors going to waste.


Only when the developer doesn't know how to do fluid layout.

I like your site and templates. Thanks.


Just because a thing is published on the web, don't accept it at face
value. For example, the "prosandcons1" and "prosandcons2" templates are
great at 1024x768, but run off the left and right side of the screen at
800x600.

--
Gus
Jul 21 '05 #7
Gus Richter wrote:
Just because a thing is published on the web, don't accept it at
face value. For example, the "prosandcons1" and "prosandcons2"
templates are great at 1024x768, but run off the left and right
side of the screen at 800x600.


Looks like those two pages need some adjustments to the margins and
padding. He has a strange -90px margin in there as well.

The two- and three-column pages work well, though.

--
-bts
-This space intentionally left blank.
Jul 21 '05 #8
Mason A. Clark <ma*************@ix.netcom.com> wrote:
Can anyone comment on the frequency (prevalence?) of pages
that are stacked on the left?
I see it as a concession to 800x600 screens. OK. But is there
a way of using the full 1024x768 or larger screens without
forcing horizontal scrolling on smaller screens?
I'm seeing 17" monitors going to waste.


I'd say the "stacked left" tendency of most sites is a concession to
users whose browser window is not opened to the full screen width,
rather then monitor size/resolution.

Your complaint assumes window size equals (or should equal) the full
size of the users screen. I *never* do that, can't imagine why anyone
would, and deeply resent the occasional site I visit that employs some
script or other to resize my window.

Aside from typically having multiple windows and multiple applications
open simultaneously, a Web page open to full screen width usually
results in text lines much too long to read with comfort. (Mine is
1280x854, but the principle holds even for 800x600 depending on the
user's preferred onscreen text size.)

--/<eith
Jul 21 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

7
by: Wayne Wengert | last post by:
I use statements like LEFT(textstring,6) in my app. I have "Imports Microsoft.VisualBasic" at the top of the code but to use LEFT I have to code : Microsoft.VisualBasic.Left(sting, integer) If...
4
by: Harlan Messinger | last post by:
What is *supposed* to be the way to specify the horizontal offset of (a) the list item's marker and (b) the list item's content? In particular, see ...
4
by: jbm05 | last post by:
Hi, I'm curious about the computational complexity of a query I have. The query contains multiple nested self left joins, starting with a simple select, then doing a self left join with the...
1
by: fleemo17 | last post by:
For increased accessibility, I've replaced "display:none" with the Off-Left method of hiding my CSS drop-down menus because the Jaws screen reader doesn't see any of the menus hidden with...
17
by: Nathan Given | last post by:
Hello All, I am trying to debug a broken query. The query uses Left$(,4) instead of Left(,4). What is the difference between the Left() and Left$() functions in Microsoft Access? Thanks!...
8
by: marco | last post by:
Hi ! I have this part of code and i can not find out why the scroller is starting from left to right instead RIGHT to LEFT. This is the main part and the scroller is working fine but from the...
6
by: Samuel Rhodes | last post by:
Hi I am trying to write a code snippet that would display a '?' sign on the top left of a control. I do not want to hard code the positioning of the DIV which will contain that '?'. Is it...
6
by: =?Utf-8?B?R3JlZw==?= | last post by:
I have two questions with regards to the LEFT function. I ran into a problem with the LEFT function today. I knew it was a valid Function, but when I tried to use it, it was getting interpreted...
4
by: moondaddy | last post by:
I have a wpf project where I use a canvas to drag shapes around. when I drag a shape beyond the right or bottom side I get scrollbars which is good. I also get scrollbars when I zoom in and a...
3
by: Noorain | last post by:
I designed a site. i want to header,footer,left & right column fixed but body information only scrolling. this site screen to be 800/600 px. i designed this way but when i used position fixed all...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.