CSS中这个徽标图像的定义在哪里?

时间:2014-01-23 18:42:43

标签: html css html5 css3 xhtml

我正在处理这个网站:http://onofri.org/WP_BootStrap/

我有以下问题:使用FireBug我无法在CSS中找到immage logo.png (这是主题左上角的litle immage)在主菜单栏的左侧)

你能帮帮我吗?它定义了吗?

TNX

安德烈

3 个答案:

答案 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;
}

如何找到它?请看右下角:

https://lh5.googleusercontent.com/-vNhGyk3XfaY/UuFlG6ipQfI/AAAAAAAAA4w/WAkSCbMVVNE/w1042-h586-no/so.jpg

答案 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;
}