According to the <a href="http://codex.wordpress.org/Function_Reference/wp_head" rel="nofollow noreferrer">Wordpress codex</a>, the wp_head(); should be located right before the closing head tag.
When I insert the code after the wp_head(); it works. But when I insert it before wp_head(); as it should be, it results in a blank space. Look at the picture to see what Firebug sais when it goes blank.
This is the code:
Firebug: <img src=" " alt="enter image description here">
How come is that? Any ideas?
When I insert the code after the wp_head(); it works. But when I insert it before wp_head(); as it should be, it results in a blank space. Look at the picture to see what Firebug sais when it goes blank.
This is the code:
Code:
<link rel="stylesheet" href="flexslider/flexslider.css" type="text/css" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> <script src="flexslider/jquery.flexslider.js"></script>
<script type="text/javascript" charset="utf-8"> $(window).load(function() {
$('.flexslider').flexslider({
slideshow: true,
controlNav: false,
directionNav: false, animation: "slide", slideshowSpeed: 4500, animationDuration: 600,
}); }); </script>
Firebug: <img src=" " alt="enter image description here">
How come is that? Any ideas?