Determining the Problematic CSS File in Firebug -
i have displayed in firebug console
"networkerror: 404 not found - http://********.com/images/slider-img/ajax-loader.gif"
so it's telling me can't find background image. can pinpoint css file image has been declared background-image property?
i have 4-5 css files being referenced in document , manual way of finding out open each of files , find image. wondering if avoided , have firebug tell me css file culprit...
firebug (as of version 2.0.x) doesn't directly show initiator of network request. requires platform support, requested in bug 563623.
so, workaround can this:
- switch css panel.
- click search field @ right side of firebug.
- ensure option multiple files checked.
- enter
ajax-loader.gif
=> css panel switch css source containing rule containing image value.
notes: there may several properties referring different images named ajax-loader.gif
. should check whether path image corresponds 1 shown in error message. (within search field can hit enter next match.)
it's not sure request comes css. may come javascript, e.g. through ajax request or appending <img>
tag dynamically.
Comments
Post a Comment