Goodbye to a great client

It’s a bittersweet day as KPCW radio in Park City will be going live tomorrow with a new website. They’ll be implementing NPR’s ‘Core Publisher’ system to replace the WordPress site we built back in 2010. We wish KPCW the very best of luck and hope the new site is superfantastic! Here’s a link to…

Read More

Prismacolor Markers

I bought this set of Prismacolor double ended markers in design school nearly 10 years ago. They’re still as good as the day I bought them. That may say more about how often I do fine art anymore, but these are high quality markers nonetheless. http://spig.io/3o202G2a3Y3B

Read More

The Spigot Rorschach Test

Quick, take a look below and what do you see? Over the last 10 years or so there have been a handful of people who see a ‘sad face’ or ‘grumpy old man’ when they see the Spigot logo. Perhaps less than a dozen, that have brought it to my attention at least. What did…

Read More

Viewport Resizer

While no substitute to testing responsive layouts on an actual device, this bookmarklet is great for initial and ongoing testing. This one is a little better than others by not only resizing, but also for sending the correct user agent and injecting the appropriate meta tags. http://lab.maltewassermann.com/viewport-resizer/

Read More

WP Migrate DB Pro

The one thing that makes developing in a local environment hard is keeping databases synced. This (paid) plugin for WordPress can do it right from one admin screen to another, and can migrate the entire database or just the tables you need. Highly recommended. We just upgraded to the developer license, in fact. WP Migrate

Read More

The sign of legitimacy

After all these years, behold a pale shingle. Is this the coming of legitimacy? Perhaps only if we weren’t legitimate before. Wink wink. A big thanks to Susan at Park City Signs for making this happen. And for the window decals.

Read More

Why I don’t post anything relevant on Facebook

I rarely (never) post anything relevant to Facebook. No status updates, no conversations, no images. Nearly everything I post is a link to something else. Why? I prefer to own my content, controlling how and where and when it’s displayed. Facebook is great for a lot of reasons. But it’s a closed system for content.…

Read More

Strikethrough without images

Looking to add a background strikethrough effect, perhaps for headers like we do here on Spigot? Look no further. // Markup <h2 class=”strikethrough”><span>My Awesome Headline</span></h2> // CSS .strikethrough { font-size: 13px; text-align: center; margin-bottom: 45px; border-bottom: 1px solid black; } .strikethrough span { background: white; position:relative; top: 8px; padding: 0 15px; } You may have…

Read More

Nested retina media queries with Sass

Since switching from LESS to Sass I’ve been excited to learn how Sass makes responsive web design easier with @content blocks and @media mixins. During a recent project I was interested to know if these mixins could be combined and nested with retina based media queries (mq). Could a retina-based mq be nested within a…

Read More

Replace Navigation Text with Icon Font

Looking to replace a navigation item with an icon font in WordPress? This little snippet placed in functions.php will do just that: add_filter( ‘wp_nav_menu’, ‘my_page_menu_link_names’ ); function my_page_menu_link_names( $menu ) { $menu = str_replace( ‘Your Nav Text’, ‘<i class="icon-example"><span>Example</span></i>’, $menu ); return $menu; } Replace ‘Home’ and the icon font code with what ever your…

Read More