Hi, How can I change the arrow icon that appears when I do rollover on the portfolio?
Hey sergio,
Please refer to this post – http://kriesi.at/documentation/enfold/change-icon-used-for-standard-theme-elements/
Best regards,
Yigit
Hey!
You can add icon element to your page and then hover on the icons to see their charcodes and then you can simply replace it in the code :)
Cheers!
Yigit
Hi there!
You can find the character codes by hovering over the icons when you add an icon element to a page, like this:
ue849 is the 3rd icon from the right on the third row. It is the icon with two rectangles.
You can delete the icon again if you don’t really need it in that page, and you want to use it elsewhere, like your functions.php.
I hope that helps!
Sarah
Hi,
Please try adding following code to Quick CSS in Enfold theme options under General Styling tab
.custom-iconlist li:nth-child(1) .iconlist-char:before {
content: '1';
}
.custom-iconlist li:nth-child(2) .iconlist-char:before {
content: '2';
}
.custom-iconlist li:nth-child(3) .iconlist-char:before {
content: '3';
}
.custom-iconlist li:nth-child(4) .iconlist-char:before {
content: '4';
}
“custom-iconlist” is custom CSS class here :)
Best regards,
Yigit