Home › Forums › CSS › Using an icon font for arrows in slider (trying to) › Reply To: Using an icon font for arrows in slider (trying to)
December 10, 2014 at 6:17 pm
#190551
Participant
there’s a lot to wade through on that page, and it’s difficult to poke around in. if you make a reduced test case in codepen it’d be much easier to figure out the problem.
you probably just need to add something along the lines of
i.icon-angle-left, i.icon-angle-right {
font-family: fontawesome;
}
i.icon-angle-left::before {
content: ‘\f104’;
}
i.icon-angle-right::after {
content: ‘\f105’;
}