Posts Tagged ‘css’

PSD to WordPress of Sharply Designed Craftsman Website

Wednesday, March 10th, 2010

Coded up a talented designer’s clean tradesman layout. The design focuses on usability and straight to point content. Images play a large role as they’re an immediate endorsement of the craftsman’s ability and skill.

(more…)


Simple Property Website Spiced up with Jquery

Sunday, March 7th, 2010

Coded up a nice clean design for a property and land agency. HTML and CSS are used, as is jQuery for an intersting introduction and page transitions.

(more…)


Web Development for London Jewellery Store

Monday, January 4th, 2010

Front end Web development for London Jewellert Store

(more…)


Converting a Design to a WordPress Website

Thursday, December 17th, 2009

There doesn’t appear to be too many psd to HTML tutorials on the net, so I thought I’d write one. Given the popularity of the WordPress blogging software, I’ll code the design up for WordPress rather than a static HTML site.  To reiterate, this is about taking a design (in whatever format), slicing it up in Photoshop, or similar (Gimp), then applying the CSS to the HTML. WordPress features intuitive markup, so I’ll base the HTML around theirs.

(more…)


Fixing Internet Explorer CSS Problems with Conditional Comments

Thursday, December 17th, 2009

You’ve developed a site using W3C best practices; it validates, the markup’s semantic or as clean as possible, and looks great in Firefox. The problem is, Internet Explorer doesn’t quite see it as the designer intended. The CSS is out and in need of a few hacks; but there’s a better, more effecient and tidier solution – conditional comments.

<!--[if lte IE 7]>
<link rel="stylesheet" type="text/css" href="css/ie.css" media="screen" />
<![endif]-->

(more…)