June 30th, 2009

With the ability to “Save for Web and Devices” options in Photoshop and Illustrator getting better. Question is should web designers be concerned with embedding color profiles in images? I know that Safari and Firefox 3 supports color profiles embed images. I realize that color profiles are mainly for print output. So should you embed color profiles in images? Yes or No
No,
My opinion is if you only have two browsers that support embedded color profiles then I would suggest not embedding until more browsers support.
Tags: embed, profile
Posted in Images | 3 Comments »
June 29th, 2009
This bit of CSS will resize the images to 50px all around. I hope this little bit of CSS helps I wondered for the longest time how I could get my images to reasonable size other than small, thumbnail or medium. I wanted my own custom size. I actually use a widget on my wordpress blog to display the feed.
.flickr_img img {
max-width:50px;
min-height:50px;
max-height:50px;
min-width:50px;
}
Not supported under IE6. Sorry! Any workaround for IE6 post a comment.
Tags: flickr, height, width
Posted in CSS | No Comments »