On 30 nov, 22:38, Al Murauski <[email protected]> wrote: > Moving the stylesheet into the public folder helped. Thank you! > > BTW, the #2 solution (moving the stylesheet reference to the html host > page) wouldn't help in my particular case due to different stylesheet > loading order. I have styles that override those in the built-in gwt > stylesheet, so my stylesheet must be load after the default one.
You could <inherits name='com.google.gwt.user.theme.standard.StandardResources' /> (instead of Standard) and then add a <link rel=stylesheet href=myApp/ gwt/standard/standard.css> in your HTML host page, before your <link rel=stylesheet href=GWT-default.css>. Or copy the CSS and images from the standard theme into your WAR, instead of the <inherits/> -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
