@ kuschel,
<em>@kuschel 409317 wrote:</em><blockquote>To show the image-Caption (or article title) when the picture is shown as caption. ANd remove the caption at mouse-over and rotete.
</blockquote>
You need to create a new css file named ‘custom.css’ in templatesja_appoliocss directory
Then, add following CSS rule to this custom.css file:
[PHP].fixel-grid .items.image.rotateY article .back .article-intro {
display: none;
}
.fixel-grid .items.image.rotateY article .flipper .item-desc.back {
height: auto;
color: white
transform: none;
padding: 15px;
opacity: 0.6;
}
.fixel-grid .items.image.rotateY article:hover .flipper .item-desc.back {
-moz-transform: perspective(800px) rotateY(0);
-webkit-transform: perspective(800px) rotateY(0);
transform: perspective(800px) rotateY(0);
height: 100%;
padding: 40px;
opacity: 1;
}
.fixel-grid .items.image.rotateY article .back h2 {
text-align: left;
}
.fixel-grid .items.image.rotateY article:hover .back h2 {
text-align: center;
}
.fixel-grid .items.image.rotateY article .back h2 a:after {
background: none;
}[/PHP]
Hope it helps.