Home › Support Forums › Theme Support › Minimatica › Permanent titles on slides › Reply To: Permanent titles on slides
Hi again
i found out how to do it on myself.
here is my solution.
1:
remove “display:none;” (or comment it out) from style.css in:
.kwicks .post .entry-container {
position:absolute;
bottom:0;
padding:5px;
margin:0px;
background:url(images/entry.png);
width:600px;
display:none;
2:
in ../wp-content/themes/minimatica/scripts/minimatica.js
comment out (or remove) the following four lines:
var container = jQuery(‘.entry-container’, slide);
container.stop(true, true).delay(500).fadeIn(500);
var container = jQuery(‘.entry-container’, slide);
container.stop(true, true).hide(500);
my minimatica.js looks afterwards like this:
——————————————–
function slide() {
jQuery(‘.kwicks’).kwicks({
max : 605
});
jQuery(‘.slide’).bind({
mouseenter: function() {
var slide = jQuery(this);
var opacity = jQuery(‘.opacity’, slide);
//var container = jQuery(‘.entry-container’, slide);
opacity.stop(true, true).fadeOut(500);
//container.stop(true, true).delay(500).fadeIn(500);
},
mouseleave: function() {
var slide = jQuery(this);
var opacity = jQuery(‘.opacity’, slide);
//var container = jQuery(‘.entry-container’, slide);
opacity.stop(true, true).fadeIn(500);
//container.stop(true, true).hide(500);
}
});
}
jQuery().ready(function() {
slide();
jQuery(‘.nav a’).bind({
mouseenter:function() {
jQuery(this).animate({
marginTop: -5
});
},
mouseleave:function() {
jQuery(this).animate({
marginTop: 0
});
}
});
jQuery(‘.entry-tags a’).bind({
mouseenter:function() {
jQuery(this).animate({
top: -2
}, 100);
},
mouseleave:function() {
jQuery(this).animate({
top: 0
}, 100);
}
});
});
————————————————–
that’s all π it works perfectly to me