All posts by Paula Carlson

Dipping my toes back into the Drupal

Apparently we’ll be using more Drupal soon at work, so today I installed Drupal 7 onto my office machine.

Holy crap, that was easy!

I’m sorry, but I remember the very first time I installed Drupal on my home machine, and it took SIX HOURS of troubleshooting the MySql and the PHP, and then yes, the Drupal. It was a dreadful experience, and to be honest, it was a sign of my trials with Drupal start to finish. I’ve hated Drupal for a long time now.

Hopefully this new easy installation is also a sign, and Drupal 7 will be a kinder and gentler CMS than Drupal 6 was. Many, many fingers are crossed!

Take THAT, z-index! Pyew! Pyew!

Solved a bitch of a coding problem that I’d wasted way too much time on before Christmas. It was a CSS problem where a tooltip box couldn’t transcend its parent div’s z-index, and therefore kept falling behind the neighboring div. I spent a lot of time trying to figure out how to raise the child above the parent, until someone else needed help with an onmouseover, and bam! The answer hit me–elevate the parent.

<div onMouseover="this.style.zIndex = 100" onMouseout="this.style.zIndex = 1">

Ta da! Problem fixed. Woo!