Responsive Banner Slider not working properly

  • Posted by Heyndrickx Gunther (9) Offline
I will definitely give that a try after I've read the documentation properly. For now I have restored all changes, simply enabling jQueryEasy (default) bypasses the multiple jquery load issue for the responsive banner slider but unfortunately again also stops the header from sliding.
But hopefully I can work that out, contacting the template developer probably won't do much good as they haven't responded to a previous issue with the menu header layout either... solved that myself after a 3-day headache. :)

Thanks for all the help so far and giving me some insight to the problem, certainly makes it a lot less frustrating than when being clueless. ;)
10 years 6 months ago #13 by Heyndrickx Gunther

Please Log in or Create an account to join the conversation.

  • Posted by TemplatePlazza (5310) Offline
No problem dkwb ;) I think the template is actually for joomla 2.5 and not upgraded to fully support joomla 3.x yet.
Btw, I saw these codes from your template ;
<script type="text/javascript">
$(function(){
$('#slides').slides({
preload: true,
preloadImage: 'templates/mx_joofree9/images/loading-balls.gif',
play: 5000,
pause: 2500,
hoverPause: true,
effect: 'fade',
crossfade: true,
fadeSpeed: 900});
});
jQuery(document).ready(function($) {
$("#slides").hover(function() {
$(".slides_nav").css("display", "block");
},
function() {
$(".slides_nav").css("display", "none");
});
});
</script>

try to change to
<script type="text/javascript">
jQuery(function(){
jQuery('#slides').slides({
preload: true,
preloadImage: 'templates/mx_joofree9/images/loading-balls.gif',
play: 5000,
pause: 2500,
hoverPause: true,
effect: 'fade',
crossfade: true,
fadeSpeed: 900});
});
jQuery(document).ready(function(jQuery) {
jQuery("#slides").hover(function() {
jQuery(".slides_nav").css("display", "block");
},
function() {
jQuery(".slides_nav").css("display", "none");
});
});
</script>
10 years 6 months ago #14 by TemplatePlazza

Please Log in or Create an account to join the conversation.

  • Posted by Heyndrickx Gunther (9) Offline
Made the changes to the index.php of the template. It still won't move I'm afraid.
10 years 6 months ago #15 by Heyndrickx Gunther

Please Log in or Create an account to join the conversation.

  • Posted by Heyndrickx Gunther (9) Offline
Hi, I decided to work around the problem as the template isn't going to co-operate anyway... Just disabled the built-in slideshow, installed a seperate slideshow module and placed it in the header position. Everything does what it's supposed to now, which makes me happy. :)

Thanks for your time and help, really appreciate it and set the topic to resolved.
10 years 6 months ago #16 by Heyndrickx Gunther

Please Log in or Create an account to join the conversation.

  • Posted by TemplatePlazza (5310) Offline
Ah ok, glad to hear that ;) Thanks for the confirmation DKWB
10 years 6 months ago #17 by TemplatePlazza

Please Log in or Create an account to join the conversation.

Powered by Kunena Forum