hello how to add a script in the "html block" where to "banner" on the site ?, for example with this script: http://rhinoslider.com
to add this in _header.html
<script type="text/javascript" src="js/rhinoslider-1.05.min.js"></script>
<script type="text/javascript" src="js/mousewheel.js"></script>
<script type="text/javascript" src="js/easing.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#slider').rhinoslider();
});
</script>
<style type="text/css">
body { background-color:#000; }
#slider {
width:600px;
height:250px;
/*IE bugfix*/
padding:0;
margin:0;
}
#slider li { list-style:none; }
#page {
width:600px;
margin:50px auto;
}
</style>
and css / comon.css that does not work add the writing "rhinoslider.css"
.rhino-btn {
background:url(../img/rhinoslider-sprite.png) 0 0 no-repeat;
z-index:10;
width:56px;
height:53px;
display:block;
text-indent:-999%;
-webkit-user-select:none;
-moz-user-select:none;
user-select:none;
}
.rhino-prev, .rhino-next { bottom:-4px; }
.rhino-prev {
left:-6px;
background-position:-168px 0;
}
.rhino-next {
right:-6px;
background-position:-106px 0;
}...................