http://kriesi.at/themes/enfold/portfolio/
Portfolio Columns
How do I:
1. Remove the circle arrow hover over?
2. Have the pictures appear gray scale until they are hovered over, where they would then be color?
Thank you for your help!!
Hey Micheal0424!
Please add following code Quick Css
.image-overlay { display: none !important; }
.js_active .grid-image {
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
}
.js_active .grid-image:hover {
filter: grayscale(0%);
-webkit-filter: grayscale(0%);
-moz-filter: grayscale(0%);
-o-filter: grayscale(0%);
filter: grayscale(0%);
}
Regards,
Yigit
Add this under WordPress Admin > Theme Options > General Styling > Quick CSS:
/* REMOVE ROTATING CIRCLE ON HOVER */
.image-overlay .image-overlay-inside:before{
display: none;
}