Hi guys, so I am running the Gensis 1.8 framework, with I don't believe to have anything to do with my current problem. I have loaded JQuery 1.8 in my functions.php with this code: //jQuery Insert From Google
if (!is_admin()) add_action("wp_enqueue_scripts", "my_jquery_enqueue", 11);
function my_jquery_enqueue() {
wp_deregister_script('jquery');
wp_register_script('jquery', "http" . ($_SERVER['SERVER_PORT'] == 443 ? "s" : "") . "://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js", false, null);
wp_enqueue_script('jquery');
}
this works. However, if you go to my homepage: http://semanticwebmanagement.com/fmog/
You can see that the WP-testimonials plugin paragraph text also moves. I am submitting this same post into both Genesis' and WP-Testimonials websites just find out what's wrong. If you have any idea please let me know. Thanks!