i want an icon after every external link – so i would like to use the font icons from entypo with css content definition.
Is that possible ?
ok i found it
so you have to know the number in your custom font (or entypo font)
and f.e.
a.extlink::after {
content: " \e801";
font-family: "entypo-fontello";
font-size: 12px;
vertical-align: top;
}
so i gave to these links which i should mark with it a class : .extlink and then it works
the backslash was the thing i don’t know :wink