Forum Moderators: open
So it's not really a "browser" setting. Allowing a web page to reset something that primary in the system would open up some big security troubles - and so you cannot touch it with your web page code.
Does your site look bad on screens with a bigger resolution? If so, why? You see a lot of sites that are designed with 800px-width screens in mind. On a bigger screen (resolution) everything can be centred so you have a centre column on a background. It looks fine.
I got a feedback from someone saying that the home page shows a lot of empty space at the botton when they view it.whereas i dont see anything wrong or an extra space.so i figured that it may be a resolution issue!
Liquid design? can you tell me more about that? does it mean using percentages instead of pixel values? Also i have seen many sites that mention best viewed on 800x600.why is that?
i have seen many sites that mention best viewed on 800x600.why is that?
This is because they have been built by people who aren't any good at design. You should avoid imitating anything these people do.
Percentages do come into liquid design, but it's a bit more than that. Have a look at the CSS forum if you want to know more.
But a good start would be to use percentages in your page design. This would mean that people would be able to adjust the size of the page to fit their monitor resolution, preferred window size and state of their eyesight, rather than having to adapt to your design.
BTW, if you are going to worry about which sizes they use, you shouldn't be concerned about the percentage of visitors using a particular screen resolution. You need to worry about the amount of revenue associated with a particular window size - a much more difficult task.
And then, if you follow this route, you need to work out the marginal cost of making any change versus the marginal revenue that you'll get from it.
That's a lot of work. Much easier (and more profitable) to let the software take care of it all by specifying the page size in percentages.
i have seen many sites that mention best viewed on 800x600.why is that?This is because they have been built by people who aren't any good at design.
The important question is whether or not the extra space seen in a fixed width layout at higher resolutions makes any difference to the function and/or experience of the site.
If you centered that layout horizontally, so the extra space on the right was equally split between right and left, you would probably find that the layout looks fine at higher resolution and no damage is done.
The important question is whether or not the extra space seen in a fixed width layout at higher resolutions makes any difference to the function and/or experience of the site.
No the site functions just the same and shows no errors..
If you centered that layout horizontally, so the extra space on the right was equally split between right and left, you would probably find that the layout looks fine at higher resolution and no damage is done.
Those of you who are web designers---- how would you design a website for a client so that later the client does not complain about the extra space when viewed on different resoultions?
is using percentages at all times the answer?
1. Center the layout (using either tables or CSS, depending on browser support needed)
2. Left align, but include some graphic elements that tile to fill the window.
I do not usually use percentages - I prefer being able to fix the line length for easy readability. When I do create a liquid layout, I use max-width in the css to place a limit on line-length. Then I use a scripted css rule to make IE simulate max-width (which it does not support.)
I prefer being able to fix the line length for easy readability
how would you design a website for a client so that later the client does not complain about the extra space when viewed on different resoultions?is using percentages at all times the answer?
If you DO use %s, I'd advice calculating numbers that force text content into a reasonably sized box so it's still readable, and read up on ways to glue a liquid layout together so that a maxed browser doesn't put your text to the left and your image to the right with 400px of empty space in between.
I'm sure such techniques exist. Maybe someone else can drop in a few references?
You can get your content to code ratio WAY up, like 70% to 80%. Your HTML becomes human readable and your site maintenance a breeze. To say nothing of the fact that CSS lets you do rendering things you cannot achieve with HTML alone (line-height alone is worth the price of admission!)
My strongest recommendation - dive into CSS.