easing fix for wordpress  [ 739 views ]

Goal: run easing animations under my page.

The story similar to jQuery and wordpress one.

Find the header.php file in the theme directory and include two lines above <?php wp_head(); ?> like this

...
<?php 
wp_enqueue_script("jquery");
wp_enqueue_script('easing', get_stylesheet_directory_uri() . '/js/jquery.easing.1.3.js');
wp_enqueue_script('easing-comp', get_stylesheet_directory_uri() . '/js/jquery.easing.compatibility.js');
?>
<?php wp_head(); ?>
...

see also: Easing Cheat Sheet

#sidebar a { color:#fff; } #sidebar ul ul li { color: #DEF585; } #sidebar h2 { color: #fff; } #sidebar ul p, #sidebar ul select { color: #BEDDBE; } #backfly { background: url(images/golfBallWallPaper.jpg) left bottom fixed repeat-x #65a51d; }