Tag archives for web development
Regardless of whether you are embarking on a redesign project or a new website, one of the most important documents is the client survey or questionnaire. Many client surveys found online are derived at least in part from Web ReDesign, by Kelly Goto and Emily Cotler. This is one of the most helpful books that I have found for web ...more»
A background image can be applied to any element using the following CSS declaration:
background-image: url(image name);
Shorthand
Shorthand background declarations are written as:
background: color image repeat attachment position;
For example, the following code:
p {
background-color: #f00;
background-image: url(background.gif);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
}
would be written in shorthand as:
p {
background: #f00 url(background.gif) no-repeat fixed center;
}
Background Position
Two ...more»
From GoMediaZine...
If you’re freelancing or just starting your own design company, you may be in jeopardy of being a whore. That’s right. Some seemingly sweet client may come along, wine and dine you, bend you over the back of the couch, have their way with you – then dump you like last week’s trash without paying you. You may be ...more»
Box UK has posted a handy checklist to assist web developers and project managers when launching a website. The collaborative effort appears as if it is still a work in progress, but documents such as this usually are. ...more»


