I'm lost .. I can move everything , exept that "Title", it is possible to move it left and right, but not bottom....:unsure:
Printable View
I see that your slider div is called:Quote:
I'm lost .. I can move everything , exept that "Title", it is possible to move it left and right, but not bottom....
This is where you will want to add the styles.Code:#mygalone
I problably missing something here?
Code:/*--- slider begin ---*/
.slider{ position:relative; float:left;}
.stripViewer {
margin:0;
overflow:hidden;
position:relative;
}
#mygalone{overflow:hidden;}
#mygalone ul{position:relative; padding:0; margin:0 ; height:300px; overflow:hidden;}
#mygalone ul li{float:left; position:relative; width:730px; height:290px;}
.stripTransmitter{position:absolute; margin:242px 0 0 0; text-align:right; height:4px; top:0; left:0; overflow:hidden; z-index:100;}
.stripTransmitter ul{ padding:0; margin:0 0 0 665px;}
.stripTransmitter li{ padding-right:6px; float:left; position:relative; width:15px; height:15px;}
.stripTransmitter ul li a { width:15px; height:15px; display:block; text-decoration:none; background:url("../includes/templates/all_business/images/slider-button.gif"/*tpa=http://www.katre.ws/includes/templates/all_business/images/slider-button.gif*/) no-repeat 0 0;}
.stripTransmitter ul li a:hover, .stripTransmitter ul li a.current{ background:url("../includes/templates/all_business/images/slider-button-act.gif"/*tpa=http://www.katre.ws/includes/templates/all_business/images/slider-button-act.gif*/) no-repeat 0 0; }
*html .stripTransmitter ul li a{ background:#fff; overflow:hidden;}
*html .stripTransmitter ul li a:hover, *html .stripTransmitter ul li a.current{ background:#7e1653; }
You need to put the margin or padding, etc. on your div named #mygalone in your stylesheet.Quote:
I problably missing something here?
When I added the margin, it puts space above the new products.Quote:
I did that, but only thing thats moving downwards are products, not title...
Code:#mygalone{overflow:hidden;margin-bottom:30px;}
...maybe do you know, how to put that javascript working as a loop... at the moment it does one cycle and stops.
Code:<script type="text/javascript">
jQuery(window).bind("load", function() {
jQuery("div#mygalone").slideView();
var slider_links = jQuery('.stripTransmitter li a');
var slider_links_index = 0;
function slider_intro(){
slider_links.eq(slider_links_index).trigger('click');
slider_links_index++;
if(slider_links_index <= slider_links.size()){
setTimeout(function(){slider_intro()}, 5000); //select change time
}
else if(slider_links_index > slider_links.size()){
slider_links.eq(0).trigger('click')
}
}
slider_intro();
});
</script>