Category Archives: Uncategorized

I’m a PC – Microsoft Ad

About.Me

New Blog Site

I’m thinking of starting a new blog site to write about my current health challenges – fibromyalgia in particular – in the event that my experiences, trials, and tribulations may be something that others can relate to…

Holiday Monday

No rest for the wicked though!

Raw Code

My raw food lifestyle = greater
concentration
productivity
output
creativity
These days, most of my cycles are allocated to my one major contracting client, but I’m still finding time to work on smaller side projects. More updates on these will be coming in the next several weeks. I need less sleep than I used to, therefore I feel equipped to [...]

You know you’re busy…

You know you’re busy… when you don’t have time to update your blog in a meaningful way

CSS Wizardry

What can be done entirely in CSS is quite thrilling these days!
My current projects, CSS templates on a Wordpress backend:

http://www.myphpcms.com/site_maple/
http://www.myphpcms.com/site_eh/
http://www.myphpcms.com/site_voicefound/

Wordpress Wizardry

My new position involves Wordpress Wizardry – creating custom themes and widgets. I am extremely busy, but I love it.

Fun with CSS 2.1

CSS 2.1: Selectors in Depth

CSS 2.1 In Depth is proving to be an interesting course. Below is a snippet from my assignment this week, showing some interesting work with selectors. Although they appear convoluted to someone who hasn’t seen them before, the SelectORacle is fantastic for “translating” complicated selectors.

strong:first-child
{
text-transform: uppercase;
}

div.rant > ul > li:first-child + li + li
{
color: green;
background-color: [...]