Render styled HTML emails consistently with Litmus
Getting your HTML email to look the same on all mail clients is hard. Most clients only support a small subset of HTML. Outlook 2010 actually uses Word to d...
Getting your HTML email to look the same on all mail clients is hard. Most clients only support a small subset of HTML. Outlook 2010 actually uses Word to d...
Most often, when you're using Django's url tag, you want relative links, not absolute links.
A common problem for a new site to have is for their users to occasionally submit the same form two or more times. For example, maybe they were adding a new...
Sometimes, you want all the thumbnails you're creating to be the same dimensions. For example, your layout may require a certain width so that all the items...
When I develop a website, I tend to go subdomain crazy. If the site is crazy.net, I probably configure www.crazy.net, admin.crazy.net, static.crazy.net, you...
Website analytics tools are expected to do a lot. They need to allow you generate reports on metrics like sessions, pages/time per session, bounce rates, re...
Very often when styling a webpage, you want to put content in a box. For example, say you have a standard box for contextual help content.
The Apple store checkout form redesign introduced me to the concept of in-context error messages.
By default, Django will send an email to the site admins when a 500 error occurs. These emails contain all kinds of great information such as stacktrace, HT...
Forms are the primary way your users communicate with your website. Hopefully, the users are always entering data in the correct format, and the form always...