Hi. Some questions regarding the portfolio grid:
1. Is there code to change the transparency/color of the hover?
2. How do I remove the circle icon and arrow on the hover?
3. Can I remove the little triangle above the description bar?
4. Can the Sorting Options be stylized in any other way (such as with buttons or vertical alignment?) I’ve got different categories set up for each portfolio item but wanted something different then just the straightforward horizontal listing.
Thanks for your time and any potential help!
Hi smallisland!
remove the arrow using this code in Quick CSS field:
.avia-arrow {
display: none;
}
remove circle by this code:
.image-overlay.overlay-type-extern .image-overlay-inside:before {
display: none;
}
Change opacity with this code:
.avia_transform a:hover .image-overlay {
opacity: 0.2 !important;
}
Cheers!
Andy