MXNA (2) Public Beta Apr 11. 050
Christian Cantrell and Mike Chambers are inviting all willing participants to put the new Macromedia XML News Aggregator through its paces.
The new interface designed by Josh Dura compliments some of the great new features that have been added for this release.
Joined-up Website Design Mar 26. 052
I just finished working on ‘another’ site for the wife of a cohort of mine. Mrs Tiffany Kemp runs a commercial management business called Devant. Much like her husbands website, the devant site needed a re-fresh, so that’s what we did, and this is the end result.

Let me know what you think.
Wedding Photography Mar 17. 055
I just finished working on a site for a cohort of mine. Mr Simon Kemp is perhaps the best wedding & portrait photographer ever but his old website just didn’t cut the mustard. We did a bit of a deal and this is the result.

Let me know what you think.
CSS3 in Firefox Dec 03. 040
Blake Scarbrough has blogged about using some upcoming features of the CSS3 specification in Mozilla Firefox. There’s some pretty neat tricks to be had and they all degrade perfectly in browsers without support.
Styling Horizontal Rules with CSS Oct 26. 041
Tip of the day… don’t waste hours trying to style Horizontal Rules consistently in different browsers. Instead wrap your HR in a div, set the HR to
display: none
div.horRule {
height: 1px;
border-top: 1px solid #E5E5E5;
margin-top: 3px;
margin-bottom: 3px;
margin-left: 10px;
margin-right: 10px;
}
div.horRule hr {
display: none;
}
If a user is browsing your site with a device that doesn’t support CSS then they’ll still see the standard HR.