Hi,
I have the same probleme of infinite spining login icon.
Seems it’s in conflict with the following code, in fact as I delete this one, the slider works perfectly. Probleme is i’m front end design with small knowledge in javascript.
If someone can help. I use the following code in order to maintain the secondary menu visible, even when user scroll.
Thank’s in advance for answer.
Cheers
function secondaryMenu_fixe() {?>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.8.3.min.js"></script>
<script type="text/javascript">
$().ready(function() {
var $secondary = $("#widget-menudetourage, #widget-menuretouches, #widget-menuvectorise, #widget-menucolorisation, #widget-menu3d");
$(window).scroll(function(){
$secondary
.stop()
.animate({"marginTop": ($(window).scrollTop() + -50) + "px"}, "slow" );
});
});
</script>
<?php }
add_filter ('thematic_belowmainasides' , 'secondaryMenu_fixe');
[Moderator Note: Please post code or markup snippets between backticks or use the code button. As it stands, your posted code may now have been permanently damaged/corrupted by the forum’s parser.]