Wednesday, 30 May 2007

Design Ideas

Things to remember for designs

diagonal stripes
dripping paint
folded corners
curled corners
silhouttes
badges
swirls in backgrounds
neon colours
list images
header images
worn edges/effects
image banners
styled buttons
cut edges
drop shadows
outside boundries
vertical text
multirow links
sunburts
teasers/visual signposts

Monday, 21 May 2007

Brushes and Swirls

A collection of different brushes for swirls etc for Photoshop and Illustrator:

http://www.easyelements.com/free-photoshop-brushes.html

Monday, 14 May 2007

Brands of the World

Good source for high resolution logos in eps format

http://www.brandsoftheworld.com/

Thursday, 26 April 2007

CSS height and width bug fix

For bug in browsers on minimum width and height to allow for ie6

set the values in the css (same for width):

.css{height:200px; min-height:200px}

Goes out side the .css code:

html>body .css{height:auto}

same for width

Wednesday, 25 April 2007

Web page minimum width

Code used for setting the minimum width of a page:

min-width: 800px;
width:expression(documentElement.clientWidth < 800? "800px": "100%" );

Wednesday, 28 March 2007

ndesign studio

Really cool website and tutorials

http://www.ndesign-studio.com/

Wednesday, 21 March 2007

LoVe HAte CSS Links

Correct order for CSS links in the stylesheet

a:link { }
a:visited { }
a:hover { }
a:active { }