Cross Browser CSS Background Transparency

In a nutshell, this is what I used to achieve somewhat cross browser css background transparency: #content { background-color: rgba(255,255,255,0.3); }#content { background-color: rgba(255,255,255,0.3); } Then, you’ll of course need to make an exception for stinkin IE: <!–[if IE]> <style … Read More

WordPress Upgrade Shell Script

There’s a couple examples online of shell scripts to upgrade a WordPress installation. However, I’ve ended up creating my own because every configuration (server and WordPress) is inevitably different, requiring you to roll your own. The script below handles a … Read More