Monthly archives: November 2008

 

 

89

Short (or not?) write-up on FOWD 2008 in NYC

Ryan Singer, 37 signals The future of web app interface design. Ryan only talked about 2 problems: 1) disconnect between designers and developers The usual process that 90% of the companies are using is separating designer from front end developers from developers. (there supposed to be a diagram here, i might add later) But the [...]

 

141

Add a PDF icon to anchor links

In your PHP code add the following line: $html = eregi_replace (‘<a href=”([a-z0-9./-_ ]+.pdf)”>’, ‘<a href=”\\1″ class=”pdf”>’, $html); And in your CSS file: a.pdf { background:url(../images/pdf_icon.gif) bottom right no-repeat; padding-right:40px; }