Quick Tips Of The Week – August 22nd 2009

Quick tips of the week for designers is now here, I will be posting five great tips that I discover during the week and share them with you! This week learn how to vertically and horizontally center using css, quickly grab hex codes, find those mysterious fonts, a great Photoshop blending mode tip and a fantastic jQuery content slider.

#1

verticallycenter1

Vertically and Horizontally centering using css is probably easier than you think, sure everyone knows how to horizontally center using the old 0 auto margin trick. To get an image/object exactly centered using css, simply apply a negative top margin of half the images height, and a negative left margin of half the images width. For example:

#centered {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -75px;
  margin-left: -150px;
}

centerverticallyexample

#2

whatthehex

Have you ever come across a great colour that you just don’t know what it’s hex code is?

colorzilla

Colorzilla is a great firefox add-on, the color picker sits discretely at the bottom left status bar of the browser, to use it just simply click the eye dropper icon and place the ‘cross hair’ any where in the browser and the 6 digit hex code will be displayed. Then right click the eye dropper icon and select cody “#178271″ hex code. I use Colorzilla all the time as 9 times out of 10 the color that I want to know will be on a website therefore there is no need to take a screen shot and take it into Photoshop.

#3

whatsthatfont

Have you ever come across a killer font you just don’t know the name of well here is a nifty web service that will take an images of the font, analyze the image and give you a list of fonts that match. It’s great! This web service is called WhatTheFont.com

whatfontstep1

The first step is uploading an image of the font or you can give the link to the image location, for this example I will be using the famous google logo.

whatfontstep32

Next it will break the text up into individual characters, if it has analyzed a character wrong you can change it manually.

whatfontstep31

The service will then take the information/images and compare them to the database and provide you with a list fonts that match and their names.

#4

photoshopbledningmode

A quick tip for choosing a blending mode in Photoshop on a mac is to use the hot keys SHIFT – + to scroll through the blending modes + will scroll forwards and - backwards.

blendingmodes

#5

anythingslider

For this weeks last tip here is a useful jQuery content slider, sure there are loads of sliders already out there however this one is all of them in one with other cool features including slide buttons, tabs, auto playing and a start/stop button and many more, plus I think its one of the best looking one out there. It was created by Chris Coyier, Remy Sharp and Douglas Neiner.

anythingslider-example

That wraps it up for this weeks quick tips, what did you think of them? leave your thoughts below, don’t hesitate to suggest a quick tip for next weeks article.


henrydurdan

About Author..

Henry Durdan is a web designer from the United Kingdom, he loves all things design and loves learning new things about the design world. Henry also does product reviews, technology related obviously! to find out more head to the about page of the site! You can also follow Henry on Twitter.

This entry was posted on Friday, August 21st, 2009 at 5:15 pm and is filed under Quick Tips Of The Week. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

Responses

  1. August 22nd, 2009 at 3:31 pm

    awesome links. looking forward to more.

    Reply to this comment

Leave Your Response