Tom Dell'Aringa wrote: > ... Exploring the window with the DOM inspector shows > the right classname and everthing seems in order. You can see this lovely > behavior at: > http://monitor.pixelmech.com/activity.html > http://monitor.pixelmech.com/css/monitor.css
> Click the "add ticker" link to > get a couple of dynamically generated lines. If you have the web developer > extension in FF, open the edit css panel, and watch the arrows pop in. > The images do not show up in Fx, Safari or Opera (my PC is gone to sleep already). In Fx DomInspector and in Safari's WebInspector, both show a /computed/ path of http://monitor.pixelmech.com/css/images/quotes_up.gif but the image is in fact located at http://monitor.pixelmech.com/images/quotes_up.gif So the correct path would be #activity .up { background: #000 url("../images/quotes_up.gif") 0px 6px no-repeat; } instead of current background: #000 url("images/quotes_up.gif") 0px 6px no-repeat; You can set this in DomInspector and the images appear. Of course, this does not explain why the images pop up in WebDeveloper Edit CSS. Ingo -- http://www.satzansatz.de/css.html ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
