Hi I had used the following code to override my right and left navigation arrows in my Rev Slider…
/* change arrows in rev slider to use font awesome icons */
.tp-leftarrow:before {
content: “\f177” !important;
}
.tp-rightarrow:before {
content: “\f178” !important;
}
.tparrows:before {
font-family: fontawesome !important;
}
.tp-leftarrow.default, .tp-rightarrow.default {
background-color: rgba(0,0,0,0) !important;
}
.tp-leftarrow.default:before, .tp-rightarrow.default:before { color: #fbfbfb !important ;
}
I want to utilise the new light icons we now have with latest pro and font awesome v5, but can’t work out how to select these in the above as same unicode for various weights. Can you help?