简体   繁体   中英

What does the Image SRC not change?

Here is my test site :

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.

I KNOW it is skin.css but I do have skin.css on wentireweb.html but still..I'm unable to change the SRC.

Thanks

The image is coming off .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. That CSS file comes off the server. Remove that line from your HTML source too.

the image located under the selector .web #front_logo, .web #search_form, .web #search in the skin.css file, it has the following format

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

is this what you need...or I miss something?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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