Hello readers, today we are going to add a zoom-in/magnification effect to the thumbnails in articles in Xenforo.
If you publish articles, this effect will give a nice addition to the look of the forum
Check the demo:
For this Just go to ACP->Appearance->Templates and search for extra.less
add the following codes:
.articlePreview-main a:hover {
transform: scale(1.1) rotate(4deg);
background-size: cover !important;
transition-duration: 1s;
transition-property: transform;
}
.articlePreview-main a {
background-size: cover !important;
transition-duration: 1s;
transition-property: transform;
}
.message--articlePreview .articlePreview-image:after {
background-image: linear-gradient(to bottom,transparent,#0e0e0e);
opacity: .1;
padding-bottom: 60%;
}
.articlePreview-main {
overflow: hidden;
}
Click Save when done.