Setting the default leading in Photoshop

You can set the default (auto) leading in Photoshop by first bringing up your Character Panel, then switch to your Paragraph tab. Click the Paragraph options menu.

Choose Justification from the menu.

At the bottom you can change your (auto) leading to whatever you desire. This works really well for em sizing as it keeps everything relative to your text size. No more trying to figure out what 150% of 16px* is.

* Note: I realize that 16px is not em sizing, but when designing in Photoshop, 16px is usually equivalent to 1em in most if not all browsers now.

Posted in design | Tagged , | Leave a comment

Photoshop Browser UI Action

I have been busy designing a site for my browser action and getting the action tested. It should be up in a few days/weeks. Here is the screenshot I posted to Dribbble.

I do plan on asking for a $3 donation to download the action. I will also be offering it free but I am going to put some sort of delay on that. The reason? Because it’s totally worth $3 and because 37Signals (and I) advocates charging for things. I also did not want to limit those of you who don’t feel it’s worth $3 or that you can’t afford it. This is really an experiment to see if this pay model has any merit.

Posted in design | Tagged , , | 4 Comments

CSS Gradients for Dummies

Recently, I have started experimenting with CSS gradients. It is flexible, fast, requires fewer server requests, and on and on. The bad is that it’s not supported by everyone yet, think of it as progressive enhancement, so it’s not really that bad.

The problem I had when trying to use CSS gradients is that the syntax is confusing and the examples on webkit.org were not clear and were fairly complicated. What I wanted was a simple starting point to, well, start from.

I’ll post the example then I’ll explain it in more detail so you know what’s what.

.item {
	background-image: -webkit-gradient(
	linear,
	left top,
	left bottom,
	color-stop(0, #ccc),
	color-stop(1, #333)
	);
     }

So first we define the gradient using -webkit-gradient().

The second line defines whether the gradient is linear or radial.

The third line defines where the gradient starts, the forth where it stops, you can use left, right, top, bottom, percentages etc (any way you would position a background image. The above example is a vertical gradient, lighter on the top and darker on the bottom. If you want a left to right gradient you would change it to:

...
left top,
right top,
...

Color-stop defines the colors and the position of the colors, the first being the starting position and color, the second being the ending position and color. Note that the position can be percentages or a number 0-1, 0 being the starting point, and 1 being the ending point. In the above example we have a starting position defined as 0 and the ending position defined as 1, but we could make them .5 which would be the center. Note: You can define as many color-stops as you want, each with a different color but I wanted this example to be as simple as possible.

The below is an example of what the gradient would look like in a webkit browser (Safari or Chrome):

Wait, what about Mozilla browsers?

So, Firefox 3.6 will support, -moz-linear-gradient and -moz-radial-gradient which works just like the -webkit versions except you do not have to define the “linear” or “radial” in the CSS (since you do this with the name). Firefox 3.6 is still in development but you can download and check out other changes here.

Wait, wait, what about Internet Explorer?

Tough luck, it won’t work. Luckily, gradients are not necessary to a good browsing experience (as good of browsing experience you can get in IE). This folks is what’s known as progressive enhancement. Enhance modern browsers while still providing decent, usable sites for those using outdated browsers.

Posted in css, design | Tagged , | 2 Comments

Webb & Eley on the web

Earlier this week LWT launched a new site for Webb & Eley, a multi-disciplinary law firm.

The logo was designed by Karla Merritt, self-proclaimed “creative evangelist,” photography by Chris Reding and the design and development of the site was handled by Ben Shoults, that’s me folks. Of course that was just the creative side of it, Mary Catherine Phillips is the Account Executive for Webb & Eley, she really helped the project move along at a steady pace.

Check out the site for yourself : www.webbeley.com

Webb & Eley

Posted in design | Tagged , , | Leave a comment

100 downloads, new designs and more

So, I’ve been pretty busy. I have been working on several side projects and freelance things the last week or few. I thought I would stop long enough to give an update, show off a teaser of some of my work and to celebrate.

First, let’s celebrate: My 960.gs Photoshop actions have been downloaded 100 times as of today. As someone who’s never offered up anything like this before, this excites me a good deal more than it should.

Second, I am still working on a set of Browser User Interface actions, but this process is more complex since I am having to use a script to install the image files, relink to them and load the action into Photoshop.

Thirdly, Here is a small sample of what I have been working on in my spare time. Let me know what you think.

Posted in design | Tagged , | 1 Comment

Around the Web

This a quick post to showcase some sites that I ran across in the last few days that I though were worth mentioning.

A post from Mark Pilgrim showing readers that it’s time to start using HTML5 form features now, they degrade nicely but allow modern browsers to rock the cat box.
A Form of Madness

A great post on creating some awesome user interface elements. Focuses on design down to the pixel level.
Crafting Subtle & Realistic User Interfaces

Posted in around the web | Tagged , , | 1 Comment

960 Grid Actions

Always looking to increase my level of productivity, I made a quick Photoshop Action that is based on the 960 Grid System. Instead of keeping track of a template file, I thought it would be easier to just make an action that would do the same thing.

The action creates a new file with (almost) the same dimensions as the 960gs templates. So, what are you waiting for? Download the action, install it in your Presets > Actions folder in Photoshop and load it.

Download the Action

Posted in workflow | Tagged , , | 17 Comments

Browser UI Actions

Sorry it’s been quiet the last few days. I have been working on a little side project, a set of actions and html templates to ease in adding the browser UI to photoshop comps.

The general idea is to save your flat comp as a .jpg or .png and insert into this HTML template. This will put the UI around your image which gives the client a better understanding how the site will actually look in the  browser.

Alternately, I have been working on some actions which will build the UI directly into the photoshop document around your comp, regardless of size. I work at a historically traditional ad firm and they like to show mounted/boarded comps. So that’s the idea behind the actions.

If you are interested in something like this, let me know and I’ll see if I can get some folks to beta test it.

Posted in workflow | Tagged , , | 9 Comments

Setting up your Exchange 03 email for Mail.app

So when Snow Leopard promised built in Exchange support for it’s Mail app, I was overjoyed. I loathe using Entourage for work and Mail for my other accounts. With Snow Leopard installed I noticed that I could not set up my work email in Mail. Turns out, you need to have Exchange 2007, NOT Exchange 2003 like we have here at work.

Continue reading

Posted in Tech | Tagged , | 2 Comments

Site creep

So nothing is actually launching, I think it’s more of a creep. Anyway, here it is, the site design. There are no features to speak of. It will be fleshed out soon, but I just wanted to get someone else’s theme off here. I am using Typekit for the headline font, which is Chunk.
Continue reading

Posted in design | Tagged , , | Leave a comment