Once the font size is selected, a cookie is set. The next time the user comes to the page the font will be the same size they left it.
If your computer has more than 1 GB of RAM, you can take advantage of Photoshop’s Bigger Tiles Plug-In. This plug-in allows Photoshop to process image data in large chunks to reduce overall loading time and increase responsiveness. To do this, browse to Photoshop\Plug-Ins\Adobe Photoshop Only\Extensions\Bigger Tiles folder and remove the ~ from the filename of ~Bigger Tiles.8BX so that the file name is “Bigger Tiles.8BX”. If photoshop is opened, restart Photoshop.
Mark Frauenfelder: DeskLickr is a neat Mac screensaver that grabs images from Flickr, "giving you all the options to grab photos from your profile, tag searches or even the DeskLickr group filled with hand selected Desktop goodness!" Link
[via Boing Boing]
Sometimes the best way to understand a client's needs is by comparing their project to an existing site or service. The site should feel "like eBay" and work "like Expedia." But what do such comparisons really mean? Learn to master the metaphor while avoiding unrealistic goals and expectations.
[via A List Apart]
Been stuck in a creative rut so long so you've started to decorate it? A List Apart’s Kevin Cornell drops his crayons to share tips on developing and maintaining a productive creative routine.
[via A List Apart]
Steffen Rusitschka wanted a cross-browser text-overflow:ellipsis, so he created it and told us all about it via Ellipsis or “truncate with dots” via JavaScript.
You can see it in action, or download the code. The main ellipsis function:
-
function ellipsis(e) {
-
var w = e.getWidth() – 10000;
-
var t = e.innerHTML;
-
e.innerHTML = "" + t + "";
-
e = e.down();
-
while (t.length> 0 && e.getWidth()>= w) {
-
t = t.substr(0, t.length – 1);
-
e.innerHTML = t + "…";
-
}
-
}
Olav Bjorkoy recently launched Blueprint CSS, a framework that takes typography into account.
Why did Olav create it?
After reading an article by Jeff Croft on frameworks for designers, I started looking at the existing CSS frameworks, trying to find one that was right for me.
Never again was I to repeat the tedious task of creating a grid from scratch, defining default typography, or battling with inconsistent default browser CSS.
In July, Brad Neuberg and a group of talented hackers released Purple Include, a library that does transclusions.
Now there is a new version which is a major refactoring that simplifies working with the library and now works across all major browsers.
Brad tells us more:
Purple Include is a client-side JavaScript library that allows you to do client-side transclusions.
What the heck does that mean?
It means that you can include and display fragments of one HTML page in another without copying and pasting any content. For example, you could quote the second paragraph from another person's blog entry by embedding something like:
[via Ajaxian]

Recent Comments