Posts

Seeking Web Designer with strong CSS skills

designIT is a boutique web development firm specializing in content management systems. We are looking for a keen designer with strong CSS skills to design and style sites for a wide range of clients. In return for the following requirements we provide a positive environment where you will be supported, get to have you say and be able to grow with the business. You will: be expected to present your site designs to clients and work with them to arrive at a design that works for the user, and the client's business goals. be able to produce CSS/ HTML/xHTML templates from your Photoshop mockups. be able to produce code that works on a variety of browsers such as IE, Safari & Firefox. have experience in coding with web standards & are aware of accessibility & useability issues when creating sites. have a minimum of 3 years experience, working on a variety of projects with strong communication skills and with a strong eye for detail and good design. Ideally you will also h...

Firebug 0.4 released

A new version of the Firebug Firefox extension (for debugging JavaScript, CSS, HTML and Ajax) has been released. Release notes are at http://www.joehewitt.com/software/firebug/releases/0.4notes.php If only there was something comparable for IE! Tags: ajax javascript firefox extension

Rebuilding Vogue.com.au using eZ Publish (Sitepoint Article)

Sitepoint have published an interesting article on the rebuilding of vouge.com.au using eZ publish. While the article does not focus on the implementation details it is a good overview of the redesign process and benefits of managing a site with a CMS and separating content and presentation using XHTML+CSS. Tags: eZ publish

eZ publish EXIF stripping followup

It's been 2 weeks since the stripping of EXIF data was put into place on the willow site . Last friday a redesign up uploaded and as part of this update I added the EXIF stripping to all the images on the site. The following table shows how these changes have effected the size of downloads: Week / Action Bytes Transfered Sessions Bytes / Session Week 1 - no image changes 2.50 GB 6,969.00 376.45 KB Week 2 - striping EXIF data from thumbnails 1.81 GB 7,459.00 254.95 KB Week 3 - striping EXIF data from all site images (minor design changes) 992.98 MB 8,459.00 120.20 KB As the number of sessions has increased over the period I've used the Bytes/ Session to calculate that stripping the EXIF data from all images has resulted in a saving of approximately 30% (this figure is likely to be effected by the new lighter site design). These changes have resulted in the site loading much quicker, especially the collection pages that contain a lo...

eZ publish xajax extension upgraded to 0.2.4

A new version of the xajax library has been released . I've just upgraded the extension on the public SVN server . I'm sure that Kirstof will update the contribution shortly. Kirstof has updated the contribution ! Tags: eZ publish AJAX

Reduce thumbnail size in eZ publish by stripping EXIF data

Have been working on a refresh of the willow site and could not work out why the majority of thumbnail images were 20K yet others were 2K. I stumbled on the issue when a bug with the handling on EXIF data presented itself. When ImageMagick scales images it will copy any EXIF data unless told not to. The images on the willow site contained approximately 18K of EXIF data and this was being copied into the thumbnail variations. eZ publish makes it easy to add filters for image variations. Simply add the following line to image.ini.append.php in your siteaccess file: [ImageMagick] Filters[]=strip=+profile "*" +comment [small] Filters[]=strip= This will strip EXIF information for "small" image variations and can be added to others by simply adding the Filters[] line to the variations definition. Newer versions of ImageMagick have a -strip flag that will also remove EXIF data. To use this replace the [ImageMagick] section with: [ImageMagick] Filters[]=strip=-strip T...

AJAX, Javascript, CSS debugging extension for Firefox

If you do any javascript and or AJAX work you need the FireBug firefox extension. FireBug lets you explore the far corners of the DOM by keyboard or mouse. All of the tools you need to poke, prod, and monitor your JavaScript, CSS, HTML and Ajax are brought together into one seamless experience, including an error console, command line, and a variety of fun inspectors. Tags: ajax javascript firefox extension