Hello,
I want to change the oval shape of the next / previous portfolio item thumbnail to a square. Is this possible?
Best regards,
Torstein
Hi TorsteinWold!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.avia-post-nav .entry-image img {
border-radius: 0;
}
Best regards,
Yigit
Thanks Yigit,
that works!
Is it possible to have a very small corner curve? I tried border-radius: 0.2; … but then the it`s a full oval again…
Anyway, not a big thing…
Best,
Torstein
Hi!
Please use following code instead
.avia-post-nav .entry-image img {
border-radius: 2px;
}
Regards,
Yigit
Yes. Perfect. Thanks.
Torstein