
Originally Posted by
themind
First, strictly from a design standpoint, it is my opinion (and general consensus) that you really shouldn't have to scroll down a webpage.
What consensus would that be? You seem to be taking a print media idea, taking it to an extreme, then applying it to Web development.
Newspapers adopted the notion of 'above the fold'. This was intended to ensure that important content (the paper's name and main headline, usually) could be seen when folded on stands. This same notion has been applied (correctly) to Web design such that informative content can be seen without scrolling. This allows a user to see what the document is all about without extra actions on their part.
The Web is a medium that is unique: it actually has the capacity for different sizes. You don't need to squash content into a small area, or spread it across multiple pages. This is an advantage. What you seem to be proposing is to regress to the limitations of other media.
Yes, scrolling can't be overdone as that makes finding information difficult. Horizontal scrolling should be avoided at all costs. However, document scrolling is far preferable to in-document scrolling (using Flash, scripts, or frames - all of which have problems in some form) or page, after page, after page.
You have a nice picture towards the top and a good color scheme, but nobody likes to scroll down a mile & read through lines of scattered text.
Now that I do agree with. Scrolling through paragraphs is one thing. Having to scroll through mostly whitespace is another entirely.
I would use your picture (smaller and towards a side) and clear, concise links to other pages ie Costumes, Lingerie, Articles, etc.
Indeed. Navigation should be 'above the fold' and should be able to take the user to any major part of the site instantly.
background-image : images/Web%20Templates/elegant%20lady/ww_tile3b.jpg;
You should have corrected syntax here: URL values must be contained within the URI functional syntax:
Code:
background-image: url(...);
#bodyscheme a:link, #bodyscheme v:link {
color: #800000
}
You mean:
Code:
#bodyscheme a:link, #bodyscheme a:visited {
color: #800000;
}
However, the color and background (or background-color) properties should always be paired unless you know that another rule will apply it directly.
Mike
Bookmarks