Hi, i am using these arrows on the forum but they are in a widget.
Is there any way to put them in the template?
Is there any way to put them in the template?
- Widget Code:
- Code:
<div style="position:fixed; right:0.1%; bottom:45%;">
<div id="nav_up"><img src="http://i57.servimg.com/u/f57/11/38/18/62/iiii10.gif" alt="Πάνω" title="Πάνω" border="0"></div>
<div id="nav_down"><img src="http://i57.servimg.com/u/f57/11/38/18/62/isiii11.png" alt="Κάτω " title="Κάτω" border="0"></div>
</div>
<script type="text/javascript">
jQuery(function() {
var overelem = jQuery('body');
jQuery('#nav_up').fadeIn('slow');
jQuery('#nav_down').fadeIn('slow');
jQuery('#nav_down').click(
function (e) {
jQuery('html, body').animate({scrollTop: overelem.height()}, 1100);
}
);
jQuery('#nav_up').click(
function (e) {
jQuery('html, body').animate({scrollTop: '0px'}, 1100);
}
);
});
</script>