我正在尝试通过 icomoon 字体在 wordpress 中通过菜单栏的文本链接左侧添加图标。我正在使用从 icomoon 下载的 CSS。我已经在 WP 管理区域的菜单选项区域中添加了该类。图标(字体)确实显示在“li”元素上,但我希望将它们添加到“a”元素中。仅供参考,添加字体的类使用 :before 选择器。这是css的摘录:
[class^="icon-"]:before, [class*=" icon-"]:before {
font-family: 'icomoon';
font-style: normal;
speak: none;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
color: $white;
}
.icon-home:before {
content: "\68";
}