how to edit icon in breadcrumb

Anis07

New member
Registered
Joined
Dec 22, 2018
Messages
3
Points
13

Reputation:

how to edit it

from this
1.PNG


to this
2.PNG
 

Zer01ne

Collaborate
Collaborate
Registered
Joined
Nov 25, 2022
Messages
725
Points
253

Reputation:

Try this
CSS:
.p-breadcrumbs>li:after {
    content: "\f105";
    width: 1.28571429em;
    display: inline-block;
    text-align: center;
}
 
Top