Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

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)

#190551
GSutherland
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’;
}