样式按钮:在不工作之前

时间:2015-03-08 20:16:06

标签: html wordpress css3 blogger

我尝试将此标题设为我的标题:https://boardwalkdemo.wordpress.com/

但有些事情是对的。我的切换按钮:before代码显示不正确。

我可以在http://detelin-markov.blogspot.com/

看到我的进展

我的错误在哪里?

1 个答案:

答案 0 :(得分:0)

在你的 .sidebar-toggle :: before 中,你应该添加Font-family,这是FontAweSome,你的内容不会被字体识别。

以下是一个例子:

.sidebar-toggle::before {
   content: "\f039";
   height: 24px;
   width: 16px;
   color: inherit;
   font-size: 16px;
   line-height: 24px;
   font-family: 'FontAweSome';
}