Website development tips and tricks

This content is 16 years old. I don't routinely update old blog posts as they are only intended to represent a view at a particular point in time. Please be warned that the information here may be out of date.

About a year ago, I started the redevelopment of this site to use WordPress as my CMS, in the process aiming to make the site XHTML and CSS standards-compliant. It was a big job and, as this blog is really just a hobby that I put most of my spare time into, it took some time. For the last year I’ve had a draft post part-written about some of the things I found along the way and now, as I’m about to embark on another facelift (let’s call it markwilson.it v2.5), I thought it was about time I finished that post – or at least published the collection of notes I made during the development of markwilson.it v2.0. I hope some of the information here is useful to others setting off on the same route and, of course, if anyone knows better, feel free to leave a comment.

First of all, sizing my text. No pixel sizing here – I use font-size:medium; for the body and then percentages to resize text elsewhere (ems would achieve the same result as percentages but this method was recommended and avoids potential issues with Internet Explorer). Then, in order to keep the text size pretty much consistent across browsers, I set the font-size:76%; on the #wrap. Using a font-size of medium as a start point is probably not essential – that’s the default for most browsers anyway but it does at least give me a known start point. I could go further and implement the A List Apart hack for Internet Explorer (IE) 5 on Windows but, as IE5 users accounted for just 0.13% of my visitors in the last month, it really doesn’t justify the effort (I’m waiting for the day I can say the same about IE6 but that’s some time off yet).

I do most of my development using Mozilla Firefox (on a Mac), then test on Safari (MacOS), IE6/7 (Windows) and Mozilla (Linux). I’m afraid that I don’t bother about other browsers (except some compatibility testing for mobile browsers) but that covers the vast majority of visitors. I also test the site with the page style disabled (to check that document flow is correct and that site is still usable) and repeat (with style applied) to see the effect of the site without images, and without scripting. Basically, if it all degrades well, then I’m happy. The only downside (for me) of browsing without JavaScript support is the absense of Google AdSense or Analytics.

When trying to work out what is working, and what is not, the accessibility-checking favelets can be useful but I actually prefer Chris Pederick’s Web Developer extension for Firefox. When I first came across this handy extension, I thought Chris’ name was familiar and from his resume I see that we were both working at ICL at the same time in the late 1990s… maybe that’s it). Incidentally, the Web Accessibility Tools Consortium (WAT-C) has produced toolbars for IE and Opera.

Validating XHTML and CSS using the W3C tools is good for checking out the quality of your code (but you do need to keep checking back – I’ve just noticed that some of the third-party code I’ve added has broken my XHTML). For blogrolls, an OPML validator is available.

Having moved to a hosting provider where I have access to the server logs, the first thing I noticed was the volume of errors like this one:

[timestamp] [error] [client ipaddress] File does not exist: /usr/home/username/public_html/favicon.ico

I added a favourites icon file to my web server’s root folder and instantly saw a drop in the number of errors (there are plenty of online generators available but I used Favicon Maker – largely because the site looked good… I find it remarkable how many people offering web design tips don’t appear to have looked at their own site recently… although I do realise that there is a difference between design and code and I also realise I’m leaving myself open to criticism here too). I also added this line of code because not all browsers will look for the presence of the favicon.ico file:

<link rel="shortcut icon" href="http://example.com/favicon.ico" type="image/vnd.microsoft.icon">

Incidentally, Information Gift has a useful summary of how various browsers treat the favourites icon.

On a similar note, I recently added a 57×57 apple-touch-icon.png file to the site to support webclips on the iPhone. It may be a minority platform but it’s one I use!

A few more resources that I’ve found useful whilst developing the site include:

Last, but by no means least, I’d like to mention my buddy Alex, who provides the hosting service for the site and is also my first port of call for any WordPress/web development advice.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.