Archive for June, 2009

CSS tricks for your site

There are thousands of sites out there offering tips and tricks for using CSS. But how do you know where that information is coming from? Who says the people writing these “tips” know what they’re talking about? For all you know, it could be someone who has not clue what CSS even stands for, let alone how to use it effectively.

But that’s not the case with the experts below. They’re all well-known for their mastery of CSS and all that goes along with it. Read on for their tips and tricks with regards to everything from avoiding hacks to understanding the box model. READ MORE

10 must read Wordpress tutorials

WordPress 2.8 was released yesterday and it has a long list of new features, fixes and enhancements. Here’s a round up of 10 incredibly useful tutorials to learn about how to use the new functionality and enhancements of WordPress 2.8 READ MORE

How to handle 404 errors properly

A 404 error on the web is what a web server responds with when it is tasked with serving up a resource that it can’t find.

1. It should still look like your website
If you don’t specifically tell your web server how to handle 404 errors, it will serve up a very plain and generic looking error page. That just says something like “Not Found – The requested URL was not found on this server.” on a plain white page. This is an unhelpful and rather painful roadblock for a user. A 404 page should look like an error page, but it should still look like your website. If you are using a CMS, this is probably already handled for you. If you have a static site, you can specify a 404 template through your .htaccess file. READ MORE