Set Line Height in Komodo

Have I mentioned that I love Komodo IDE? Still, I occasionally come across an annoyance. One very annoying thing is that there is no way to change the line height in the editor other than changing the font size. I like to have a larger than average line height for better readability. I recently noticed …

Read more »

Komodo Snippet for Comment Banners

I like to keep my code organized and easy to read, but since I am almost always working on a tight deadline, I do not always have time to organize and comment my code as well as I would like to. Shortcuts that aid in keeping my code organized are more likely to get used …

Read more »

Genesis: Custom superfish arguments

// functions.php function custom_superfish_menu() { if ( genesis_get_option('nav_superfish') ) { wp_deregister_script('superfish-args'); wp_enqueue_script('superfish-args', CHILD_URL.'/superfish.args.js', array('jquery'), '1.0', TRUE); } } add_action('get_header', 'custom_superfish_menu'); // superfish.args.js jQuery(document).ready(function($) { $('#nav ul.superfish, #subnav ul.superfish, #header ul.nav, #header ul.menu').superfish({ delay: 0, // delay on mouseout speed: 'fast', animation: {opacity:'show',height:'show'}, // fade-in and slide-down animation autoArrows: false, dropShadows: false, // disable drop shadows …

Read more »