Showing articles 91 - 100 (147 total)
Posted on 12/21/2009 at 05:05 pm | Viewed 12,520 times | 0 comments
I remember about 7 years ago watching my friend use Adobe Illustrator. He was a communications design major and used his keyboard more than his mouse. I was blown away when I realized how much time you could save by learning keyboard shortcuts for Adobe's products. This is my list of the best Adobe Photoshop keyboard shortcuts for web...
Read More | Comments
Posted on 12/15/2009 at 10:18 am | Viewed 14,405 times | 0 comments
Another day of web developing with CSS and another day of needing a hack for IE6 and IE7. This isn't really a hack so much as it's a method of ordering statements in your CSS declaration that yields a working min-height declaration in Internet Explorer. Well, I guess it's a hack (but I hate using them). CSS min-height will be used in browsers...
Read More | Comments
Posted on 12/15/2009 at 08:29 am | Viewed 34,691 times | 5 comments
I've been working on setting up a multi-lingual web site for one of my clients. I was excited at the opportunity to finally use CakePHP's built-in internationalization and locale functions. However, I ran into some issues that I'm sure other newbies to internationaliztion will run into as well. Here's some take-backs of what I learned while...
Read More | Comments
Posted on 12/09/2009 at 08:16 pm | Viewed 12,962 times | 0 comments
I was upgrading the version of Jquery UI that I use with Site Avenger. The last time I was in a rush, nothing seemed to work and I rolled the changes back. This time, I took the time and decided to finally make this Jquery UI upgrade happen. This time everything went swell, except my Jquery UI tabs plugin stopped working. WTF? Read the...
Read More | Comments
Posted on 12/09/2009 at 12:15 pm | Viewed 21,098 times | 1 comment
For a while it's bugged me that I wasn't able to see the rendered output of my email messages that are sent using the CakePHP email component. I would change my code to use a remote smtp server but I still had to send messages. Well, I finally figured out how to "debug" my emails sent using CakePHP. Thanks to this posting for finally...
Read More | Comments
Posted on 11/20/2009 at 11:19 am | Viewed 12,185 times | 0 comments
There is so much cool stuff out there that's already been done with CakePHP. In an attempt to catalog it for my own use later, I'm going to start creating blog posts that highlight cool behaviors, components, etc. for CakePHP. This is the first one. From the Bakery : "A behavior that will automatically encrypt/decrypt specified fields in a...
Read More | Comments
Posted on 11/17/2009 at 01:25 pm | Viewed 33,308 times | 0 comments
I looked around and found some interesting examples and existing plugins for creating an accordion menu in Jquery. What I was looking for was a nested unordered list (UL) that would collapse and expand based on which menu item was clicked. If there wasn't a child UL, then the menu link should be clickable, instead of an accordion. Sounds...
Read More | Comments
Posted on 11/17/2009 at 01:08 pm | Viewed 14,808 times | 0 comments
I'd been struggling with a very simple accordion menu script . The problem was that I couldn't stop all of the links from returning false, when I only wanted to top link to return false. Let me show you my code: $('div#sideNav li:has(ul) a').click(function() { return false; }); What was going on (and correctly I might add) was all links...
Read More | Comments
Posted on 11/12/2009 at 09:34 am | Viewed 16,327 times | 0 comments
This answer was located at WebMasterWorld.com on 11/12/09. Answers written by johnl . I was reading up on the CSS font-style property, making sure the default value was normal. In case you are wondering, the default font-style value is normal. What struck me was a new value I've never used before: oblique. Now I'm curious... what's...
Read More | Comments
Posted on 09/30/2009 at 10:37 am | Viewed 21,958 times | 2 comments
I was about to start coding a CakePHP helper that would analyze a bulleted list and split it into columns. Starting to think about how I would approach this problem, my head began to hurt. Then I found an awesome jQuery plugin- columnizer . Unobtrusive Javascript Implementation This is a perfect example of unobtrusive javascripting. A...
Read More | Comments