Home2008February18Smashing Magazine Smashing Magazine Posted on February 18, 2008June 24, 2010 by An great site for any kind of designer. Looks like a huge blog journal with categories graphics showcases inspiration fonts how-to css toolbox best of tutorials
Css trick – Preload images [sourcecode lang=”CSS”] #preloadedimages { width: 0px; height: 0px; background-image: url(‘path/to/image1.png’); background-image: url(‘path/to/image2.png’); background-image: url(‘path/to/image3.png’); } [/sourcecode] You dont even have…
Show hidden folders in Finder Open terminal and write these 2 commands [sourcecode] defaults write com.apple.finder AppleShowAllFiles TRUE killall Finder [/sourcecode]