@import url(http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css);
这是我导入我的CSS文件的标签。我正在使用的模板目前在以下代码块中引用此导入:
#header {
background: #1731be;
}
@media (max-width: 979px) {
#header {
text-align: center;
}
}
.brand {
float: left;
margin-top: 29px;
margin-bottom: 30px;
}
.brand h1 {
overflow: hidden;
}
.brand a {
display: block;
text-decoration: none;
color: #ffffff;
font-size: 94px;
line-height: 66px;
}
.brand a:hover {
color: #fff9cc;
}
.brand .fa-gamepad { /*===Trouble area===*/
margin-top: -11px;
}
@media (max-width: 979px) {
.brand {
float: none;
display: block;
text-align: center;
}
}
我想要做的是编辑引用" .brand .fa-gamepad" 的代码行,并在同一目录中使用我自己的徽标而不是添加Font Awesome Library中的艺术作品。有关如何添加此内容并替换当前内容的任何建议?谢谢!