Hello,
For that i need to check your header.php file, If you tell me which wordpress theme you have used so any can solve this.
I think bellow this div
‘<div class=”headerslider”> ….</div>`
There is one more code that is taking dynamic image from admin “Appearance> Header” OR it can be a static image
The theme is Gridiculous. Thanks for the help.
I think I found the code to remove and it looks ok, but the slider is not playing automatically. It is waiting to be played. How can you make it start when loaded?
Hello danonline,
Please go to plugins > responsive-header-image-slider > responsive_headerimageslider.php
and find the line no 295 OR find this javscript code
<script type="text/javascript">
jQuery(function() {
jQuery('#slides').slidesjs({
width: <?php echo $sliderdefultwidth ; ?>,
height: <?php echo $sliderdefultheight ; ?>,
play: {
active: <?php echo $pausedefulthover; ?>,
auto: false,
interval: <?php echo $autoplaydefultspeed; ?>,
swap: true
}
});
});
</script>
please repace this code with this code
`<script type=”text/javascript”>
jQuery(function() {
jQuery(‘#slides’).slidesjs({
width: <?php echo $sliderdefultwidth ; ?>,
height: <?php echo $sliderdefultheight ; ?>,
play: {
active: <?php echo $pausedefulthover; ?>,
auto: true,
interval: <?php echo $autoplaydefultspeed; ?>,
swap: true
}
});
});
</script>`