Fonts, borders, and Rounded Corners for responsive sites

Responsive design is great but there are some things that can be a real pain to deal with. The first is font sizes. Since fonts don’t respond to the browser size we need another solution and the easiest to add and manage uses a tiny bit of javaScript: document.body.style.fontSize=(window.innerWidth / 100)+”px”; When this piece of… Read More Fonts, borders, and Rounded Corners for responsive sites

Best Practice For Buttons

Caroline Jarrett has written a great piece over on the UX Matters site: http://www.uxmatters.com/mt/archives/2012/05/7-basic-best-practices-for-buttons.php For those of you with short attention spans here is Caroline’s own summary: Make buttons look like buttons. Put buttons where users can find them. Make the most important button look like it’s the most important one. Put buttons in a sensible order. Label… Read More Best Practice For Buttons

On Morality and Multi-screen

In my twitter stream this morning I found a link to a page full of examples of responsive design (http://thenextweb.com/dd/2012/02/01/10-beautiful-examples-of-responsive-web-design/) While these are undoubtedly beautiful and well-crafted examples of responsive design, I’m not sure how relevant the ‘responsiveness’ is to each site’s audience. Curiously, as available bandwidth increases for most users, the amount of bandwidth… Read More On Morality and Multi-screen

Accessibility Testing: Visual Impairment

I’ve been doing some accessibility testing recently and came across WebbIE 3 If you’re testing against visual impairments then it’s worth checking WebbIE 3 out. In their own words: “WebbIE re-presents the information from a web page in an accessible format suitable for a screen reader.” Basically, this browser will strip pages down to just the content… Read More Accessibility Testing: Visual Impairment

CSS Libraries

Lea Verou has, rather masterfully, created a large library of CSS animations here: http://leaverou.github.com/animatable/ While this is undoubtedly an excellent way of showing off the capabilities of CSS I would still strongly advise against simply rushing out and plugging as many as possible into any site you may be working on. Libraries like this tend to make us all think… Read More CSS Libraries