Archive for February, 2009
Sweet Pea Compliments Slips
Thursday, February 26th, 2009
We have just finished producing the new designed Sweet Pea with compliments slips. This fits in with the new logo design and branding that has been created for the company.

Tags: graphic design
Posted in graphic design | No Comments »
Posh and Cosy Salon Website Design
Thursday, February 26th, 2009
Below is one of the most recent design ideas that we came up with for Posh and Cosy’s new website. The idea was to create a stylish feminine and professional looking website design to appeal to its ever growing client base (p.s as you can see its not quite finished).
Click on the image to see a larger version.
Tags: web design, website design
Posted in website design | No Comments »
Pausing a Flash movie with actionscript 2
Wednesday, February 25th, 2009
Quite often you don’t want to drag your time line out say 60 seconds just to add a delay to your animation or event.
There are many different ways to delay you flash movie from playing but the one that i have included below is one of the most simplest. Using the timer below you can set your time line to pause/stop (or delay) for a set period of time.
function freezeTime(howLong:Number);void{
stop();
var t:Timer = new Timer(howLong, 1);
t.addEventListener(
TimerEvent.TIMER,
function(evt:TimerEvent);void{
play();
}
}
t.start('4000');
};
Tags: actionscript, flash
Posted in ActionScript & Flash | No Comments »
How to Test your Websites Loading Speed
Wednesday, February 25th, 2009
After stripping and streamlining my xhtml, css, javascript, php and images for the design and launch of the new website i thought id do a little hunting for a decent website speed checker.
I managed to find ‘Web Page Analyzer‘ which is a free web page analysis tool that calculates page size, composition, and download time and gives speed recommendations based on best practices for usability, HCI, and website optimisation.
This was not only good for showing the data that i was after but it highlighted files that were larger than first expected and pointed out a couple of small but non important errors.
Give it a go.
Tags: tips and tricks, web design, website design
Posted in Website Design Tools, website design | No Comments »
Favicon: How To Create A Favicon.ico
Wednesday, February 25th, 2009
![]()
Personalise your site by creating your very own icon, removing the standard browser icon such as the I.E or Firefox logo. This will change the icon not only on the browser tabs but when a user adds your site to their favourites.
Step 1 – Design your icon
Simply design and image that you want to use (standard is 16 x 16 px).
Step 2 – Convert your image to a .ico file
Once you have created this icon simply convert this to an icon. There are a number of ways to do this. Download/Purchase software to create .ico files alternatively visit http://www.html-kit.com/favicon/ and create your own free icon by simply uploading your image and downloading.
Step 3 – Upload your logo
Once this has been done and you will need to put your favourite icon in the root of your website. e.g. www.mysite.com/favicon.ico make sure you keep the file name as “favicon.ico”.
Step 4 – Add the following code
In your webpage document simply add the following code anywhere within the <head> tags.
<link rel="shortcut icon" href="favicon.ico" mce_href="favicon.ico" />
or if you need it to work on a number of pages within folders simply link to the file direct.
<link rel="shortcut icon" href="http://www.zenduo.co.uk/favicon.ico" />
And its as simple as that!
Tags: tips and tricks, website design
Posted in Website Design Tools, website design | No Comments »
