Hello,
Is there an easy way to remove the image animation on the images in the gallery? I like the layout of that page, but I just want to link the image to an internal page instead.
Thank you,
John
.cat-image {
clear: both;
padding: 35px 0;
}
.cat-image img {
float: left;
max-width: 100%;
}
.cat-image > a {
display: block;
float: left;
max-width: 45%;
}
.cat-image p {
font-size: 16px;
margin: 0;
text-align: left;
}
.cat-image h3 {
font-size: 24px;
padding: 30px 0;
text-align: left;
}
.cat-image figcaption {
float: right;
width: 45%;
}
.cat-image:after {
clear: both;
content: "";
display: table;
}
<figure class="gk-photo gk-photo-left">
<a href="/joomla25/steakhouse/images/demo/gallery1.jpg"><img src="/joomla25/steakhouse/images/demo/gallery_thumb1.jpg" alt="Gallery Thumb I"></a>
<figcaption>
<h3>Risus Ullamcorper Mollis</h3>
<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Cras justo odio, dapibus ac facilisis in, egestas eget quam. </p>
</figcaption>
</figure>
<figure class="cat-image gk-photo-left">
<a href="/joomla25/steakhouse/images/demo/gallery1.jpg"><img src="/joomla25/steakhouse/images/demo/gallery_thumb1.jpg" alt="Gallery Thumb I"></a>
<figcaption>
<h3>Risus Ullamcorper Mollis</h3>
<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Cras justo odio, dapibus ac facilisis in, egestas eget quam. </p>
</figcaption>
</figure>
.cat-image-right figcaption {
float: left;
}
.cat-image-right > a {
display: block;
float: right;
max-width: 45%;
}