Easy Thematic Favicons

Continuing with my modest efforts to post some useful Thematic/WordPress snippets, here’s some code to provide favicons for WordPress sites using Thematic child themes. Simply add this code to your child theme’s functions.php page: // Add favicons to the child theme function childFavicons() { ?> <link rel=”icon” type=”image/png” href=”/wp-content/themes/childtheme/images/favicon_16x16.png” /> <link rel=”icon” type=”image/png” href=”/wp-content/themes/childtheme/images/favicon_32x32.png” /> […]

Cufón for Thematic with no plugins

UPDATE: a new, improved version of this post is available here: https://www.divydovy.com/2011/07/cufon-for-thematic-with-no-plugins-improved/ I like Cufón. As long as the page loads and the JavaScript executes quickly, it’s a really slick solution to using any font you want (and have a license for) on your website. I haven’t really used it for body text, but I […]

Cufon :hover Fix

Just a quick post. I have implemented cufon for a client’s website to replace the titles with a nice new non-web-safe font. This code worked perfectly to replace the titles with the new font. Cufon.replace(‘h1’, { fontFamily: ‘Helvetica Neue LT W1G’ }); Cufon.replace(‘h2’, { fontFamily: ‘Helvetica Neue LT W1G’ }); Cufon.replace(‘h3’, { fontFamily: ‘Helvetica Neue […]