
The web design / development world isn’t always fast cars, eating caviar by the kilogram and relaxing on a giant water bed with a harem of concubines. Sometimes you can sit frustrated in front of a computer trying to get things to align, trying to make your site just work properly, for hour upon hour. However, there are also times of sheer elation whereupon you can enjoy a warm, fuzzy feeling (hereon abbreviated to WFF) from the satisfaction of having done something perfectly, or to the highest standard that current technology (or your crippling schedule) will allow. These are 8 of those times, in no particular order…
Written by Jon.

1) When your markup is readable by humans
Ever come back to a project several months later and have to “re-learn” what you did in order to change things? Unless you like creating unnecessary work for yourself, this is probably not a great situation to be in. One of the ways you can deal with this is by creating markup that makes sense. For example, the idea behind separating XHTML from CSS is to separate the semantic logic of your page’s hierarchy from the visual style. This effect is kind of lost if all you are marking up your xhtml pages with are hundreds of divs with cryptic names such as “div1″, “div2″ and so on.
How can you remedy this? For a start, you can give your markup human-readable class names and identifiers. There are a number of methods for this, such as using camelCase - MainContainerTop - or by using the slightly more old-school underscore method - Main_Container_Top.
On the other side of things, you can’t be too blazé about your CSS files either - they can quickly become an un-navigable mess of typographical and layout declarations, which will make the job of coming back to it later to edit it rather more difficult than it should be. One method I have recently adopted from Lokesh Dhakar is to keep CSS files organised by type, with a table of contents at the top. This means that you separate all typographical styles from the layout styles, which makes for extremely easy-on-the-eyes style sheets. I also tend to keep a separate section right at the bottom for “hacks” - the sometimes-unavoidable workarounds for browsers who don’t want to play nice. Hacks are bad in two ways - you shouldn’t have to use them, and the code often looks really ugly - why mess up the clarity of my style sheet for the sake of hacks? Hence, if I need to use them, I put them right at the bottom (this way, they are also much easier to find if you need to jiggle with them or delete them later because you’ve found a better workaround).
Knowing that you have created something clear and understandable underneath the website itself (that is, beyond the visual layer) provides a definite feeling of satisfaction.
WFFF (Warm Fuzzy Feeling Factor - higher value is warmer and fuzzier): 6/10

2) When your functionality degrades gracefully
All too often I find that in this current boom of whizzy, flashy online web applications, certain browsers get shut out for no apparent reason. Now, I can understand this to an extent, but when it is a big corporation or a start-up with venture capital funding behind it, there really isn’t any excuse to be shutting out perfectly capable browsers such as Safari. Writely and Riya are two recent examples of web applications that simply say “oh sorry, you’re using Safari! Bye”. If your cutting-edge functionality doesn’t work on my browser, try to make it degrade gracefully so that at least I can enjoy a “dumbed-down” version instead of a static page telling me to kindly download and use a different browser. This is one of the more difficult WFF to achieve on this list, and one of the more time-consuming, so as much as I loathe those who don’t abide by it, I have massive respect for those who do.
WFFF: 8/10

3) When you can increase the text size willy nilly and it doesn’t break your layout
The holy grail of the “perfectly liquid layout” should be every web designer’s goal. Not everyone wants to view the site at the text size your designer has set - not everyone can. Remember, screen sizes and eye strengths differ from user to user, and some will be reaching for that “increase text size” key. Apart from this, it’s just one of those “best practice” things. However, the more complex a design gets, the harder this is to implement. Sometimes for the design’s sake, you’ll have to use a fixed height for an element, and that might make the layout go crazy when you increase the text size. In addition to this, Internet Explorer’s lack of support for the min-height property makes things all the more difficult when you want to set a height for a box, but don’t mind it getting bigger if the text starts to poke through it. There are ways around this though - have a look at Stu Nicholls’ IE min-height CSS hack for a workaround.
WFFF: 7/10

4) When your site works in internet explorer without you trying
Hah! Like this ever happens. I’m going to assume that most web designer / developers are web-savvy people and for that reason use a more capable browser as their staple and for that reason probably create websites using that browser as their main testpad. Which means you end up with a site that looks beautiful in Mozilla/Firefox or Safari but looks like someone has taken a sack of hammers to it when you fire it up in Internet Explorer. Problems with IE are usually due to its slightly amusing interpretation of floated elements, and the way IE handles the box model. It just takes patience to make IE happy. Dan Cederholm, designer of Odeo and the man behind Simplebits put it quite well in his recent interview on the Web2.0 Show - “(Internet Explorer is) the family member you don’t like but have to deal with”.
WFFF: 9/10 - making a site that looks great in IE without you trying is like an instant orgasm for web design geeks.

5) When your site’s hierarchy is hierarchical even without your stylesheet
This is another one of those dull “best practice” things that makes you feel warm and fuzzy inside without actually having any tangible impact on how the site looks. The thing about CSS is it’s great for moving stuff around, floating this next to that etc - but if you take the CSS away, does the site still make sense? Is the navigation still at the top? Are your header tags in the right order? Sounds boring, but that’s how a search engine sees your site - so a site that makes sense in terms of the hierarchical markup of the page will be more understandable to search engines, and hence get you a better page rating/index.
WFFF: 6/10

6) When your url structure makes sense
Thanks to blogging engines such as Wordpress, “clean urls” are a website “best practice” that anyone can achieve. What do I mean by clean urls? For example take a look at PingMag. If we look at a url such as http://www.pingmag.jp/2005/08/ we see that we get an archive. That probably means that if we just guess and type in http://www.pingmag.jp/2005/09, we’ll get the month after that. And you’d be right. Clean URLs are, amongst other reasons, good because they help users get an idea of where stuff is without you having to tell them. A friendly site is a better site. Now, moving into the next generation of web development tools, such functionality is built into the system - for example the Ruby on Rails framework provides clean, understandable urls as standard.
WFFF: 7/10

7) When you make a really awesome form
Forms get neglected. Poor forms. The making of a form will probably be one of the last things you do for any given web project, or at least, it’s usually not something that’s dwelled upon. And for that reason, there are so many cases of truly awful forms on the web. Go and sign up for anything these days and you’re likely to encounter:
forms that ask for too much
forms that don’t make it clear what is mandatory until after you’ve submitted
forms that erase all your input if it decides you’ve filled in one part incorrectly
The list goes on and on. Nowadays, with the widespread use of AJAX, there should be no need for me to submit a form, then come to a page that says “hey, you’ve filled this in wrong! sorry mate, START AGAIN”. Asynchronous calls to databases were made for this kind of thing. For example, once I’ve finished typing in my “desired username”, forms should check to see if that name is already taken asynchronously and inform me as I am on the same page, rather than making me submit, discover I’ve made a mistake, forward me to an “oops!” page and making the process much longer and more frustrating than it needs to be.
At the same time though, we are all human and I realise that sometimes, forms are the last thing you want to think about when the rest of the site seems so much more important. However, creating a form that is a joy to use is truly something you can be proud of, however insignificant it sounds.
WFFF: 6/10

8) When the client says “this is great, this is exactly what we wanted” and you agree
One of the best feelings in the world :)
WFFF: 10/10
105 Comments
As of December 31, 2008, PingMag and sister site PingMag MAKE are both on extended hiatus, and will not be updated for the foreseeable future. We are eternally grateful for your fantastic support over the years.
Important Notice
31 Dec 2008
Ryu Itadani: A World in Colors
29 Dec 2008
Magibon: From YouTube to Japan
26 Dec 2008
Benedetta Borrometi: Cheerful Paintings for All
24 Dec 2008
Nakagin Capsule Tower: Architecture of the Future
22 Dec 2008
Cute and Pop! 60s Girls Comics by Eico Hanamura
19 Dec 2008
Japan’s Hi-Tech Toilets
17 Dec 2008
Amusement: Gaming Culture Meets Art and Fashion
15 Dec 2008
HIROCOLEDGE: A New Tradition that Blends into Modern Times
12 Dec 2008
Masato Seto: The Sweet Allure of Betel Nut Beauties
10 Dec 2008
-
None found









awesome!!! thanks!
Posted by: pascal on March 23rd, 2006 at 11:20 pm
I agree with the last feeling the most!
Posted by: bentong on March 23rd, 2006 at 11:24 pm
Thanks a lot for this. Some good information here.
Posted by: Mike Caputo on March 24th, 2006 at 1:42 am
Very good article! I think your tips will help a lot of people! Parabéns!
Posted by: Eriksen on March 24th, 2006 at 2:42 am
Not IMMENSELY useful, but cute.
Posted by: C. Richardson on March 24th, 2006 at 3:09 am
Good site and nice look !Lasix
Posted by: enitole on March 24th, 2006 at 4:12 am
excellent article…
Posted by: nortypig on March 24th, 2006 at 5:56 am
[...] 8 Web Design Warm And Fuzzy Feelings from Ping Mag. [...]
Posted by: Pig Pen - Web Standards Compliant Web Design Blog » Blog Archive » 8 Web Design Warm And Fuzzy Feelings on March 24th, 2006 at 5:58 am
[...] 8 Web Design Warm Fuzzy Feelings Listen to this podcast [...]
Posted by: chasingdaisy.com » Blog Archive » 8 Web Design Warm Fuzzy Feelings on March 24th, 2006 at 8:52 am
That was hilarious.. A few of those points made me think back on some of the things I’ve done :)
Posted by: [GEEKS ARE SEXY] Tech. News on March 24th, 2006 at 11:19 am
Great post. I definitly relate to the first one as I just “borrowed” the CSS layout from Tom Vining, http://www.tomvining.co.uk. Organization!!
Posted by: Geoban on March 24th, 2006 at 3:06 pm
Great post.
Posted by: WEBDNA on March 24th, 2006 at 3:16 pm
I borrowed OpenSource CSS styles too : http://itech.webwarp.net. I don’t see anything wrong with that for learning process.
Posted by: iTech @ WebWarp on March 24th, 2006 at 3:25 pm
Web designi is fun!!
Posted by: m on March 24th, 2006 at 3:41 pm
You are right man, thanks, nice read. el diseño web rulezzz
Posted by: jacobo on March 24th, 2006 at 3:46 pm
WOW, can i relate.
about time someone lays it all out, nice digg :^)
Posted by: cheebs on March 24th, 2006 at 4:56 pm
very nice post, thanks
Posted by: adilio on March 24th, 2006 at 5:45 pm
goodjob :)
Posted by: myspace editors on March 24th, 2006 at 5:52 pm
[...] 24 Mar 2006 om 10:46 in Dump, Webdev en Nerdy. De reacties hebben een RSS 2.0 feed. Reageer zelf of trackback ditbericht. [...]
Posted by: WFFF ~ Low Weblog on March 24th, 2006 at 6:45 pm
Excellent advice. Look forward to seeing more from you.
Posted by: tim on March 24th, 2006 at 7:11 pm
Nice list :-)
On comment though on the first point:
I think that using underscores in class names is actually not permitted in CSS, they recommend using the hyphen.
Posted by: Ferrie on March 24th, 2006 at 8:25 pm
One thing that means that you can’t use ‘nice’ URLs in the style WordPress or RoR uses is that if you are ever likely to email the URL to someone, you can’t use it as Outlook corrupts the URLs - any // (due to an empty or unused param) will be converted to a /, making a right mess.
Posted by: MarcusBointon on March 24th, 2006 at 8:51 pm
I think my site does most of those things, good list. If only every web designer would take notice
Posted by: Matt on March 24th, 2006 at 8:57 pm
[...] PingMag - The Tokyo-based magazine about When your site works in internet explorer without you trying Hah! Like this ever happens. PingMag: 8 Web Design Warm Fuzzy Feelings [...]
Posted by: PingMag - The Tokyo-based magazine about , Blockquote - On Information Architecure, Usability and Web development on March 24th, 2006 at 8:59 pm
hehe… I agree with this list in so many ways….
Regarding Writely… While they don’t officially support Safari yet they do state in the error message that you can use Safari by using the URL http://www.writely.com/BasePage.aspx?browserok=true
I have found no problems in my safari.
Posted by: Jon Gretar on March 24th, 2006 at 9:09 pm
Good piece, and I really recognise the WFF, especially graceful degradation - which is one of those things nobody but yourself will probably appreciate, certainly not the client, but you know you’ve done the job as well as it can be done.
One nitpick: in #5 you asked “Is the navigation still at the top?” Accessibility best practise is to put navigation at the end of the markup, so screen readers and low-grade browsers don’t have to wade through it to get to the main content.
Posted by: Chris Ovenden on March 24th, 2006 at 9:14 pm
Great article!
“(Internet Explorer is) the family member you don’t like but have to deal with”.
CLASSIC!! haha
http://www.wirah.com
Posted by: Lambert Jones on March 24th, 2006 at 9:16 pm
Camel case would be “mainContainerTop”, not “MainContainerTop”. Otherwise, nice article!
Posted by: sleeplessInSd on March 24th, 2006 at 9:29 pm
It hasn’t really been mentioned here but, if you are making a website on a PC and you want to make sure it renders properly in, say Safari. An easy way to do it is to request a screenprint of the page from http://www.browsercam.com/.
Posted by: Dan Atkinson on March 24th, 2006 at 9:52 pm
The site menue did’nt render properly when i viewed it in Konqueror with Minimum size set at 14. I have huge display and need bigger fonts to see
Posted by: geoaxis on March 24th, 2006 at 11:29 pm
Especially like the last one - spot on.
I still get a warm fuzzy from a page that knows how to lay itself out before the images load, though. You could use some heights and widths in there.
Posted by: Ashok Argent-Katwala on March 24th, 2006 at 11:39 pm
You forgot one for the people in the US - When your site is ADA compliant!
Posted by: Cygnet on March 24th, 2006 at 11:47 pm
[...] Un petite lecture toute simple: 8 Web Design Warm Fuzzy Feelings [...]
Posted by: Ergocentrik » Blog Archive » 8 choses à avoir en tête. on March 24th, 2006 at 11:53 pm
[...] 8 Web Design Warm Fuzzy Feelings. When I checked this blog’s design in IE for the first time and saw that I didn’t have anything to fix, I went to my fridge and had a beer. I don’t know if that will ever happen again. [...]
Posted by: Painfully Obvious » Blog Archive » Link: PingMag on March 25th, 2006 at 12:17 am
“I’m going to assume that most web designer / developers are web-savvy people and for that reason use a more capable browser as their staple and for that reason probably create websites using that browser as their main testpad. “
Are all other web designers really such elitist snobs that they really work this way?
Do managers really let their developers work like this?
I’m all with mrfoos on this one. If you’ve got an actual business or product you are running, you should be developing in IE. IT IS THE MOST USED BROWSER! I don’t get why so many web devs get on their soap boxes about Firefox and then proudly go around saying “I don’t spend nearly as much time making my work perform well on the browser that 95% of your clients are going to use”. That is asinine to say the least.
It is the same thing as if Blizzard wrote WoW for the Mac first, and then went back and ported it to windows. Ideally you can get versions out for both at nearly the same time, but you absolutley would NOT miss launching with the windows version just because your devs liked playing it more with their Macs.
Design in IE first. Get it working for the largest market. If you think IE sucks so badly, then you’ll have gotten all the hard work out of the way. The firefox and safari versions will then fall in line much more quickly. Putting off the hardest part of development till the end is just bass-ackwards and means you aren’t going to hit dealines very well.
Posted by: Yossarian on March 25th, 2006 at 12:18 am
[...] 8 Web Design Warm Fuzzy Feelings “there are also times of sheer elation whereupon you can enjoy a warm, fuzzy feeling from the satisfaction of having done something perfectly, or to the highest standard that current technology (or your crippling schedule) will allow.” (tags: web design) [...]
Posted by: Peterwrites » links for 2006-03-24 on March 25th, 2006 at 12:20 am
Yossarian,
You not seen IE7 yet then? It (almost) works as it should. If you have designed for IE6 first and not a more comliant browser your layouts will be broken on IE7 yet the other way round and they should work…
Posted by: austin on March 25th, 2006 at 1:34 am
I still don’t see why people design using Firefox as their “testpad”. When about 75% of the people out there are coming to your site using IE, I’m thinking you should be using IE to develop your design.
IE may be “broken” but if you are designing for an extreme minority of visitors, then your method is just as broken.
Posted by: Squirrelinabox on March 25th, 2006 at 2:53 am
I just launched http://www.heartsongpresents.com for my company. This was an update to an already existing tabled site. It is now valid XHTML, (some layout bugs to be fixed), valid CSS, and its completely tableless. It degrades well in a logical structure if no CSS is used, and the print stylesheet works well. So, for the most part I felt alot of the above when this was finally launched and changed over.
Excellent article!
Posted by: Nate K on March 25th, 2006 at 3:49 am
Not everyone can design this well, thats for sure. Sites that work in all browsers, give a little in the layout without throwing a hissy fit and still fit the clients goals.
Posted by: michael on March 25th, 2006 at 4:34 am
To the one that think webdeveloppers should be using ie as their primary platform:
This is stupid, because ie allows you to do totally non standards things, and you end up doing them, knowingly or not. If you absolutly don’t care how your site will look in firefox or safari, the it’s ok.
But if you care, you’ll find out that it’s much easier to port a design made on firefox to ie than the other way around. IE mostly understands standards, it just interprets them badly in some places. So it’s generally easy enough to fix a design so that it works in ie. Heck in the worst case, you can just add a stylesheet specifically for IE.
Futhermore, ie totally lacks web developpement tools. If you’re really using CSS and you use ie as your primary platform then your life must be hell. Install firefox with the element inspector, inpect this web developper toolbar, and firebug extensions , learn to use them properly, and welcome to a new era of web developpment…
Posted by: samix on March 25th, 2006 at 5:54 am
11: When a site validates for XHTML and CSS, and it looks right too!
Posted by: Ben on March 25th, 2006 at 7:40 am
[...] PingMag’s 8 Web Design Warm Fuzzy Feelings is an article that provides a great overview on CSS/XHTML best practices while maintaining three important traits for a blog post: brevity, readability and relevance. [...]
Posted by: apakuni.com · 8 Web Design Warm Fuzzy Feelings on March 25th, 2006 at 8:51 am
[...] 8 Web Design Warm Fuzzy Feelings (tags: webdesign xhtml) [...]
Posted by: Links » Blog Archive » links for 2006-03-25 on March 25th, 2006 at 9:40 am
[...] read more | digg story [...]
Posted by: r00tware » 8 Web Design Warm Fuzzy Feelings on March 25th, 2006 at 10:28 am
[...] 8 Web Design Warm Fuzzy Feelings (categories: toread webdesign webdev ) [...]
Posted by: » Links: 3-24-2006 on March 25th, 2006 at 6:43 pm
[...] me siento identificado con este post de pingmag al que he llegado via web design times. 8) When the client says “this is great, this is exactly what we wanted” and you agree [...]
Posted by: Planetfrank on March 27th, 2006 at 11:48 am
…and I thought that cute “Mmmmmh, Firefox”-cat changed into a page-tearing monster when I open the page in IE…
Posted by: Jens on March 27th, 2006 at 3:09 pm
Brilliant, just what I needed to cheer me up and it’s definately the last point that really gives that WFF 11/10.
Posted by: Darren Cornwell on March 27th, 2006 at 10:19 pm
[...] http://www.pingmag.jp/2006/03/23/8-web-design-warm-fuzzy-feelings/ [...]
Posted by: ThisPlaceSucks » Blog Archive » Warm and Fuzzy Web Feelings on March 29th, 2006 at 12:52 pm
PingMag - I’m super proud of this webapp I just made today, and no wonder cos it implements at lots of your warm fuzzies! - http://jonaquino.blogspot.com/2006/03/american-idol-app-on-ning.html
Posted by: JonathanAquino on March 29th, 2006 at 4:49 pm
Warm Fuzzy #9: When your selectors start to read like phrases. Examples: class=”message popup”, class=”callout popup”
Posted by: JonathanAquino on March 29th, 2006 at 6:15 pm
Jonathan - that’s a BRILLIANT one. Should have gone into the list!
Posted by: Administrator on March 29th, 2006 at 6:22 pm
Great post.
So here goes another suggestion, and a fuzzy feeling:
9) when a printed page looks just as great as the screen rendering.
Create your site a separate stylesheet for print media. ;) My suggestion would be to hide all forms, buttons, and other things that only make sense when clickable. This doesn’t hurt, indeed. For the site I administer, the appropriate CSS file only has 50 lines, and that’s after following Lokesh’s advice on beautiful CSS.
Look at a print preview for this site, for example. 3 of 12 pages at the end are quite useless when printed on paper, so why not tell the browser not to generate them at all?
Posted by: RQ on March 30th, 2006 at 9:10 pm
When your site doen’t work with IE, and your client says “Who cares!”, we don’t use that anyway.
I can have a dream, too. Can’t I?
Posted by: Larry on April 5th, 2006 at 1:02 am
Nice :) next article could be about the sellers position with these problems.
Posted by: ukk1 on April 5th, 2006 at 4:02 pm
Great. I agree on most of these feelings. 7) made me smile, i always have trouble with making good forms and i always leave them for last!
Cheers.-
Posted by: Germán W. on May 3rd, 2006 at 11:18 am
[...] PingMag - 8 Web Design Warm Fuzzy Feelings “The web design / development world isn’t always fast cars, eating caviar by the kilogram and relaxing on a giant water bed with a harem of concubines. Sometimes you can sit frustrated in front of a computer trying to get things to align, trying to make your site just work properly, for hour upon hour.” Tags: [No Tags] Related Posts: [ ] [...]
Posted by: A Blog Apart // PingMag - 8 Web Design Warm Fuzzy Feelings on May 4th, 2006 at 1:19 am
[...] 8 times when web designers feel warm and fuzzy inside. For example “when a site works in IE without fuss”. Also talks about making sites with sensible urls and creating functionality that degrades gracefully.read more | digg story [...]
Posted by: 8 Web Design Warm Fuzzy Feelings - The Digg Effect - Search for Diggs or get Dugg on June 8th, 2006 at 1:17 pm
[...] I started out with the CSS. I have to say my CSS skills had gotten so much better that I whipped out the layout really quick and it looked nice acorss every browser, and yes, even in Mac! According to PingMag’s 8 Designer Warm Fuzzy Feelings , I should’ve an instant orgasm… but I didn’t. But I was pretty damn happy with only two minor IE hacks for font sizes! [...]
Posted by: Black Frog Media » Blog Archive » RRS Newsletter on June 9th, 2006 at 9:52 pm
[...] 8 Web Design Warm Fuzzy Feelings [...]
Posted by: Blog Vecindad Gráfica Diseño Gráfico » Blog Archive » Satisfacciones del diseñador Web on July 21st, 2006 at 9:22 am
I completely agree, among other things CSS has made things so warm and fuzzy.
Posted by: Pratana Areepitak on August 16th, 2006 at 3:25 pm
BE YOUR MASTER, AND YOU MASTER THE WORLD.
Posted by: askandar on August 29th, 2006 at 4:06 pm
[...] 8 times when web designers feel warm and fuzzy inside. For example “when a site works in IE without fuss”. Also talks about making sites with sensible urls and creating functionality that degrades gracefully.read more | digg story [...]
Posted by: Designs » 8 Web Design Warm Fuzzy Feelings on August 31st, 2006 at 11:00 pm
[...] You have to love that fuzzy feeling you get when a website is designed right. Whether it is one you worked hard on, or one that you are just visiting PingMag has 8 reasons why you should feel warm inside about great web design. [...]
Posted by: BlueSparc | the science of web design » Blog Archive » 8 Web Design Warm Fuzzy Feelings on January 11th, 2007 at 6:25 am
briana banks movies
http://jemurl.com/5e
Posted by: briana banks sex on January 19th, 2007 at 3:51 am
Hi! Nice site!
Posted by: Sharon on February 23rd, 2007 at 12:47 am
Card+Reader++%5BURL%3D+http%3A%2F%2Fwww.yasp.ch%2Fgb.asp%3Fuser%3Dsoska17.com+%5DCard+Reader%5B%2FURL%5D+++%3Ca+href%3D+http%3A%2F%2Fwww.yasp.ch%2Fgb.asp%3Fuser%3Dsoska17.net+%3ECard+Reader%3C%2Fa%3E+++http%3A%2F%2Fwww.yasp.ch%2Fgb.asp%3Fuser%3Dsoska17.org+Card+Reader+%0D%0AMany+interesting+information+on+your+site+%2D+keep+up+good+worku
Posted by: Erika on March 6th, 2007 at 6:27 pm
Blog of directtv
Posted by: directtv on March 27th, 2007 at 7:51 pm
[...] lamented over unusable forms before, in the Warm Fuzzy Feelings article. Now I’m back and my preferences are more specific than [...]
Posted by: PingMag - The Tokyo-based magazine about “Design and Making Things” » Archive » 5 Web Design Patterns for Happy Users on April 4th, 2007 at 6:03 pm
helloy
Posted by: Yasfz on May 21st, 2007 at 4:32 am
Hi Jim. Photos i received. Thanks
Posted by: Bill Compton on June 5th, 2007 at 4:25 am
[...] flip side, instances where IE functions as every other browser is something that gives designers that warm fuzzy feeling. 4) When your site works in internet explorer without you [...]
Posted by: Warm fuzzies » Chris Makarsky’s blog on June 13th, 2007 at 3:25 am
Who tells me that Webdesigner is a dreamjob?
Posted by: First-Web.de on August 9th, 2007 at 11:52 pm
Guess who’s here!
buy c d o valium
Posted by: mfvcuumg on August 23rd, 2007 at 9:18 am
Look at my website at http://www.emprestige.de I build a Div Layout (what makes me mad) for different Browsers and it works very well for search Engines like google search for the Lable z-Brand you will finde the site on the first places from 24.000.000 million. That is the problem to build Websites working in different Browser, looks good and searchengines will love it…But i hate div it is so complicate to get it well for al the different Browsers
Posted by: emPrestige on August 28th, 2007 at 8:49 pm
Wow, big thanks for this :)
Posted by: Danny on October 7th, 2007 at 10:15 pm
Very nice!
http://www.tx-design.de
Posted by: Murattx on October 25th, 2007 at 7:51 pm
building Websites is sometimes most dificult like building houses.
But you have to do whats to do.
Posted by: Bausatzhaus on January 11th, 2008 at 10:18 pm
very nice
http://www.istanbulmotokurye.com
Posted by: kurye on February 22nd, 2008 at 7:40 am
wow great!!
Posted by: myfie on March 26th, 2008 at 7:08 am
Great post - there definitely is an uprising of nice, clean design with bold use of colour at the minute - especially since the introduction of css. It appears designers have now realised that making content easier to access rather than putting obstacles in their way actually increased satisfaction - of course, they have to look great as well.
Posted by: website design on May 5th, 2008 at 5:48 pm
H73xKt hi nice site thanks http://peace.com
Posted by: bob on May 8th, 2008 at 7:34 pm
thats gonna be, how do you say… chaotic..
Posted by: lyric on July 22nd, 2008 at 9:03 am
i love the half a smile, sooo real.
Posted by: Ford chips on September 26th, 2008 at 11:46 pm
Thanks a lot for this post. It was a great and interesting read, i’ll forward this to my designing team.
Posted by: SMS Alerts on October 4th, 2008 at 3:42 am
yeah, i hate relearning things, programming is sooo, hmmm sometimes.
Posted by: emo on October 11th, 2008 at 10:07 pm
I really agree with number 8, clients satisfactory is greatest feeling we could have (and relieveing too,..)
Posted by: Domain on October 12th, 2008 at 1:30 pm
Very good article! I think your tips will help a lot of people!
Posted by: Golfmitgliedschaft on October 12th, 2008 at 3:15 pm
That cat is crazier about firefox than i am.
Posted by: Career on November 9th, 2008 at 11:06 am
[...] nek tokijski spletopis o oblikovanju je objavil članek z naslovom "8 Web Design Warm Fuzzy Feelings". Se vidi, kolk’ dela ‘mamo ob nedeljah [...]
Posted by: 8 lepih občutkov spletnega oblikovanja - Em3r10.com on December 26th, 2008 at 3:50 pm
Cool, that feeling with the cat is so cool :)
Posted by: David Gortler on December 30th, 2008 at 3:13 pm
awesome post
Posted by: Jennifer V. on January 20th, 2009 at 3:52 pm
keep on Writing dudes … your stuff is verry helpful..many thanks from bremen germany…p r o s t !
Posted by: Webdesign Schlumpf Bremen on January 25th, 2009 at 4:16 pm
yeahhh!! keep on
Posted by: Mediation Bremen on February 27th, 2009 at 2:39 am
i have a cat like that
Posted by: Abizeitung drucken on February 27th, 2009 at 2:40 am
cats are lame, jk, cats rule.
Posted by: Car Warranty on March 24th, 2009 at 10:01 am
keep it up, i will check back for more.
Posted by: IT Professionals on April 16th, 2009 at 4:13 am
if there was ever such a thing as cute cats, what would be one.
Posted by: miami computer pc laptop repair on June 16th, 2009 at 12:34 am
Forms that delete everything when you make a mistake probably annoy me the most out of everything listed
Posted by: Supply Chain on August 9th, 2009 at 4:06 am
excellent article…
Posted by: Mike-HID on October 13th, 2009 at 6:22 am
you speak the truth! keep it up, webdesign is not all glitter and glammer.
Posted by: car accident lawyer jacksonville on October 18th, 2009 at 5:50 am
Not everyone can design this well, thats for sure. Sites that work in all browsers, give a little in the layout without throwing a hissy fit and still fit the clients goals.
Posted by: Tony-Audio on October 27th, 2009 at 7:23 am
i have a cat like that too :)
Posted by: Mika2009Chips on January 9th, 2010 at 8:05 am
excellent article…
Posted by: mp3runner1 on January 13th, 2010 at 3:36 am