So, let's say your project base is com.company.gwt. Your project GWT file should be located in:
src/com/company/gwt/mymodule.gwt.xml and your CSS is located src/com/company/gwt/public/Project.css and your GWT file contains: <stylesheet src="Project.css"/> and your HTML base page has no attempt to include the stylesheet itself. And you should have no <public> tag in your gwt.xml, otherwise you can put it the folder it specifies instead of the default 'public'. You should see that when you save the Project.css, a copy should be automatically put into your war area like: war/com.company.gwt/Project.css Of course, if your gwt.xml has a <module rename-to='mymodule'/>, then this would be: war/mymodule/Project.css That should work unless I'm missing something and presume your code is otherwise compiling correctly and reporting no errors, etc. -- 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.
