This topic is locked
[SOLVED]

HOW TO change icon /arrow type?

10/22/2024 5:54:46 PM
PHPRunner General questions
Z
zwaenepoel author

IIs it possible to change this icon?

I want another type of arrow. How / where to change it??

img alt

mbintex 10/23/2024

You can do it with custom CSS

[data-icon=sortdesc]::before {
content: "\f078";
font-family: "FontAwesome";
font-size: 100%;
}

and

[data-icon=sortasc]::before {
content: "\f077";
font-family: "FontAwesome";
font-size: 100%;
}
Davor GeciDevClub member 10/23/2024

Nice tip @mbintex