We’ve been busy, not dead
September 11th, 2008 by Verne
Somebody called me yesterday and asked me whether we were still in business as they had noticed that the last time we updated this blog was back in March. Well rest assured we’re alive and well! In fact, it’s been one of our busiest Summers to date. And fortunately, we’ve got a few things to show for it! Here are a few pieces of work we’ve released recently:
WooThemes
Back in June, we had the pleasure of working with the cool cats over at WooThemes - one of today’s leading experts and providers of premium WordPress themes. In their rebranding process, they came to us to hack-up and redevelop the purchase experience for the customers of its themes and its up-and-coming themes club. The trick was to integrate a secure 2Checkout payment system into their newly designed site and automate the creation of various types of user accounts once the payments were approved. Did I mention we did it all in WordPress? If you’re already a customer of WooThemes, I hope you’ve enjoyed their purchase experience. If you’re not one yet, go ahead and buy one of their wickedgood themes and sample the experience (I’m sure Adii won’t mind)!
LIVE Conference 2008
Back in its third and strongest year yet - LIVE Conference has always made a mark with its web presence that gave other leading undergraduate business conferences something to shoot for. LIVE Conference’s newly releaunch 2008 portal is no different. This year, we combined our WordPress hackery with the idea that the conference really needed a more robust and dynamic conference management system. The end product we delivered was a full featured WordPress-powered conference management platform that supported the scalable needs of a growing initiative and could support all its essential conference needs: registration, payment, scheduling, speaker profiles, and much, much more. Oh, and we think it looks pretty nice too!
What else is new?
A lot, actually. We’ve got a few secret side projects in the works, possibly including a newly formed super group of web 2.0 headbangers and internet rockstars. You’ll know it when you see it.
We’ve also made a few leaps and bounds with our WordPress work and are looking into releasing a few goodies back into the community. This may start with the public release of the conference management system, but that’s too far ahead to tell.
Sweetcron was also released recently and what can I say, we love it! If you don’t know what Sweetcron is, you’re out of the loop. It’s the WordPress of lifestreaming. Get on it! We’ve got an exciting new Sweetcron theme that we’re putting up for free download soon, but in the meantime, you can get a taste of it on Satish’s newly launched webfront: http://sati.sh.
It’s been a great Summer filled with many successes and we thank you for being patient with our absence here while we help our clients make an impact elsewhere. We’ve finally gotten around to updating our Portfolio as well, so give it a peak and see what else we’ve been up to.
Scrap everything you’ve learned in recent years about tableless CSS structures and revert back to the HTML that your grandma grew up with (a little exagerated but it seems that long since we’ve used tables). Forget about positioning divs with CSS and rely on trusty table cells to lay out your content as many email readers will not render positioning instructions properly or at all. Be safe, be old school.
Most major email readers, whether they’re online, like Gmail and Hotmail, or desktop applications, like Outlook and Thunderbird, will ignore everything between the <head></head> tags, including your style definitions (whether you do it via <link> or <style></style> tags). This means you should style your HTML using inline styles. Be careful though - there are many CSS properties that will not render properly, like the aforementioned position property. A detailed report on how various major email readers performed against an Acid Test (which tests a handful of common CSS properties) can be found
Using background images has become an essential tool on the designer’s belt. However, there is such an inconsistency between which browsers will actually display background images that it’s best to not rely on them. As an Outlook 2007 user, I know as a fact that no background images are displayed (this is true for Gmail as well). On the other hand, readers like AOL Webmail and Windows Live Mail (not Hotmail) will render background images correctly. Since it’s too difficult to predict what reader your audience is using, your use of background images should only be for enhancement and not as something your entire design depends on.
For security purposes, many email readers will block images embedded in an email by default. The reader must opt-in on each email to display the images (though some may allow readers to set their preference). What this means is that you should rely on your images to communicate your message. Avoid replacing too much text with images and make sure your email design still gets the point across even when images are not displayed.
To avoid completely losing the message on an image when images are blocked, fill out the ALT attribute for each of your images. This ensures that the important content from the image (i.e. the text) is still passed along. This also helps in cases where the reader is using a text-only email client, as the image will be replaced by the ALT attribute.
This one’s a no-brainer but make sure to use absolute paths when referencing images. Relative paths (i.e. /images/my-image.jpg) will break as the email reader won’t know what the path is relative to. Your image paths should look like this instead: http://www.mywebsite.com/emails/images/my-image.jpg. This is so simple that it can often be accidentally overlooked so make sure to double check your image paths before you transition from draft to final.
Loading up your email design with large images will slow down the download process on the reader’s end and may deter them from reading it all together. In some cases, exceptionally large emails may also be flagged for spam and viruses. To minimize these risks, optimize your images so that they have the smallest possible file size. This may require you to play around with JPG, GIF, and PNG formats to see which gives the highest image quality with the smallest file size. Where possible, use plain text to communicate your message.
In a browser, using Flash, animated GIFs and forms add interactivity to the user experience. In an email, it bulks up the file size, raises security flags, or just doesn’t work. If there are interactive components attached to your email campaign, you are far better off linking the reader to a live site than to attempt to embed them into the email itself. It’s an extra step but at least you can be sure that your rich media and forms will work.
Just like designing for a web browser, you need to be considerate of screen resolutions and window sizes. In addition to this, email readers often have added sidebars and navigations on both sides of where your email content is displayed, further decreasing the amount of space you have to play with. Be safe and keep the width of your email design at least within 800px (we commonly use 750px).







