简体   繁体   English

Image SRC不会改变什么?

[英]What does the Image SRC not change?

Here is my test site : 这是我的测试站点:

http://hackmeout.net/Test/entireweb.html http://hackmeout.net/Test/entireweb.html

I don't know how to change this image : 我不知道如何更改此图像:

http://media.entireweb.com/images/pages/s2/skins/skin_web_glare.png

I checked all my CSS files but still my Image source is " http://media.entireweb.com/images/pages/s2/skins/skin_web_glare.png " can anyone tell me where the CSS is leading to. 我检查了所有CSS文件,但我的图像来源仍然是“ http://media.entireweb.com/images/pages/s2/skins/skin_web_glare.png ”,谁能告诉我CSS的发展方向。

I KNOW it is skin.css but I do have skin.css on wentireweb.html but still..I'm unable to change the SRC. 我知道它是skin.css,但在goireweb.html上确实有skin.css,但仍然..我无法更改SRC。

Thanks 谢谢

The image is coming off .web #front_logo, .web #search_form, .web #search . 图像来自.web #front_logo, .web #search_form, .web #search You won't find this in your css file because there is an extra css file included in the head. 您不会在css文件中找到此文件,因为文件头中包含一个额外的css文件。 That CSS file comes off the server. 该CSS文件来自服务器。 Remove that line from your HTML source too. 也从您的HTML源代码中删除该行。

the image located under the selector .web #front_logo, .web #search_form, .web #search in the skin.css file, it has the following format skin.css文件中位于选择器.web #front_logo, .web #search_form, .web #search下的图像,其格式如下

.web #front_logo, .web #search_form, .web #search {
    background-image: url("../skin_web_glare.png");
}

is this what you need...or I miss something? 这是您所需要的...还是我错过了什么?

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM