Re: (perplexing + frustrating) CSS image not found

2011-08-23 Thread Shawn Brown
HI, Why can I directly access them using the url that it is being reported GWT can not find them at. I mean: /images/panel/top.gif  --- is found /images/panel/bottom.gif -- is not found by gwt but can be accessed by using the link DevTools says GWT says it's not at. It's just beyond

Re: (perplexing + frustrating) CSS image not found

2011-08-23 Thread Hilco Wijbenga
On 22 August 2011 23:14, Shawn Brown big.coffee.lo...@gmail.com wrote:  HI, Why can I directly access them using the url that it is being reported GWT can not find them at. I mean: /images/panel/top.gif  --- is found /images/panel/bottom.gif -- is not found by gwt but can be accessed by

Re: (perplexing + frustrating) CSS image not found

2011-08-23 Thread Shawn Brown
.panelAddTop {  background-image: url(../images/panel/top.gif); } .panelEnterBottom{  background-image: url(../images/panel/bottom.gif); } So I would expect neither or both to be found since they both resolve relative to the CSS file.  That one is found but not the other really

Re: (perplexing + frustrating) CSS image not found

2011-08-23 Thread Shawn Brown
Yikes Ok what works is;   background-image: url(/resources/images/panel/top.gif);  }  .panelEnterBottom{   background-image: url(/resources/images/panel/bottom.gif);  } where the application is structured /war /war/resources/ /war/resources/images /war/resources/css etc. That

Re: (perplexing + frustrating) CSS image not found

2011-08-23 Thread Sudhakar Abraham
I had a similar problem and I solved it in the following way. S. Abraham www.DataStoreGwt.com Create the package in War directory name as images and put all the gif files. uploaded directory structure like /war/images/bottom.gif In css chage the background-image property like this.

(perplexing + frustrating) CSS image not found

2011-08-22 Thread Shawn Brown
Hi, I have a compiled project deployed on AppEngine. Some .gif files are not found by GWT. I am perplexed. The CSS file is found. Other .gif images used by the CSS file are found. Looking at DevTools in Chrome, I see which ones are not found. Clicking on the link, the server finds them and