jQuery Cycle, transparent pngs and IE rendering hell

0
February 23rd, 2012

Using jQuery Cycle to transition transparent pngs with a fade – IE has… issues. http://stackoverflow.com/questions/1156985/jquery-cycle-ie7-transparent-png-problem http://labs.unitinteractive.com/unitpngfix.php I used: wrapped each png in a div added img filter for IE cleartype: true, cleartypeNoBg: true for Cycle unitpngfix.js added class=”unitPng” only to the images that were fading in Cycle Things worked better afterwords with no halo around [...]

read more

WordPress and MultiPostThumbnails: Get image URL

0
February 21st, 2012

http://lifeonlars.com/wordpress/how-to-add-multiple-featured-images-in-wordpress/ $imageid = MultiPostThumbnails::get_post_thumbnail_id(‘post’, ‘special-preview’, $post->ID); $imageurl = wp_get_attachment_image_src($imageid,’large’); $imageurl[0]

read more