我正在处理这个网站:http://onofri.org/WP_BootStrap/
我有以下问题:使用FireBug我无法在CSS中找到immage logo.png (这是主题左上角的litle immage)在主菜单栏的左侧)
你能帮帮我吗?它定义了吗?TNX
安德烈
答案 0 :(得分:0)
你去了: http://onofri.org/WP_BootStrap/wp-content/themes/AsperTheme/assets/img/logo.png
轻松腻......第21行
.navbar-brand {
display: inline-block;
text-indent: -9999px;
width: 190px;
height: 50px;
background: url(../img/logo.png) center center no-repeat;
}
如何找到它?请看右下角:
答案 1 :(得分:0)
这是:
.navbar-brand {
display: inline-block;
text-indent: -9999px;
width: 190px;
height: 50px;
background: url(../img/logo.png) center center no-repeat;
}
http://onofri.org/WP_BootStrap/wp-content/themes/AsperTheme/assets/css/stili-custom.css?ver=all
答案 2 :(得分:0)
http://onofri.org/WP_BootStrap/wp-content/themes/AsperTheme/assets/css/stili-custom.css?ver=all
第21行
.navbar-brand {
background: url("../img/logo.png") no-repeat scroll center center rgba(0, 0, 0, 0);
display: inline-block;
height: 50px;
text-indent: -9999px;
width: 190px;
}