Hi everybody,
is it possible to use entypo-fontello icons instead of .vert_icon and .hor_icon?
cheers
Found a simple solution. If someone needs this in the future … see how i did it.
Create icons (ex. toggle.png and toggle_active.png) and upload them to the folder “images/custom” inside enfold theme. After this add following code to your custom css:
.toggle_icon{
border:none;
background: transparent url('../images/custom/toggle.png') center center no-repeat;
}
.activeTitle .toggle_icon{
background: transparent url('../images/custom/toggle_active.png') center center no-repeat;
color:#0988d9!important;
font-weight:bold;
}
.toggle_icon .vert_icon, .toggle_icon .hor_icon{
visibility:hidden;
}
Thanks for sharing it :)
Cheers!
Josue