Archive for the ‘Design’ Category

Transcending CSS

Wednesday, August 15th, 2007

Working at GreatSchools we do a lot of CSS work and we have a number of CSS books on our library shelf. However, last month we picked up a copy of Transcending CSS and it’s far and away the most enlightening book on CSS I’ve read. We’re already changing the way we do our CSS for the better as a result.

Having worked with a lot of front-end (more…)

GreatSchools wins Webby People’s Voice Award

Tuesday, May 1st, 2007

Webby People's Voice Award Winner I’m thrilled that GreatSchools has won the Webby People’s Voice Award for best Family/Parenting site. We’ve been in the nominations before but I think continued growth and brand awareness through a largely redesigned site helped push us over the top this year.
(more…)

Deferring ad loading on your pages to avoid unnecessary outages

Tuesday, October 3rd, 2006

At GreatSchools we’ve had 3rd party ad server outages or slowness effectively make our site unusable as users browsers waited for certain ads to render before rendering the rest of the page. I had originally thought just specifying height and width of the div element around the ad would be enough for the browser to move on given a slow ad load but in my tests with various ad servers that turned out not to be the case. After some research I discovered that the trick that some sites (such as Digg.com) employ is called source ordered content where you put the content in the order you’d really like it in (be it for SEO or for deferring ad calls) and then using CSS or Javascript to move it to the proper place.
(more…)

Using image tags (for style elements) in HTML is bad design

Tuesday, April 11th, 2006

Update 4/11/06: I’ve received some criticism on this post from people who assumed I was saying you should never use image tags in HTML. My bad for the misleading title, I’ve added to the title in parens to be more concise! For those that didn’t read the whole post, in the last paragraph I say that it’s fine to use HTML image tags for content, I just think it’s bad design to use image tags for style elements. Anyhow, thanks for all the feedback (postive and negative) and here’s the original post:

CSS offers us a lot of power to style and decorate our pages with images, however, replacing text with an image is one gap not well addressed by CSS such that you often see sites doing:

<a href=”/”><img alt=”Home” src=”home.gif”/></a>

which is obviously bad for 2 reasons:
(more…)

Crawler side effects of using XHTML entity references

Wednesday, April 5th, 2006

We’re slowly moving towards making GreatSchools XHTML compliant (we have a long way to go though)! To start we’ve begun using proper XHTML entity references for URL’s with &amp; as a separator instead of plain old & in a few places.
(more…)

Enhancements to subModal

Friday, March 10th, 2006

I started hacking around with subModal (modal javascript windows with background shading) this morning to add some features I liked in Lightbox Gone Wild. You can try it out and download my changes to subModal here. They are (more…)

Hiring a web front-end engineer and a rant

Wednesday, March 8th, 2006

Update 3/28/06: Still looking… not for a web designer but a web front-end engineer. Jemery does a good job of describing the distrinction. No doubt about it, this is a hot skill set that is extremely hard to find!

I’m hiring a front-end web developer (contract or FTE) for either on-site or remote work. This is not a web designer or graphics designer job but rather a technical front-end developer, someone with crazy XHTML/CSS/Javascript skills (more…)