I tried by CSS
body {
background-color: #f1f2f3;
}
and setting the bgcolor property of the body tag in my HTML file:
<body bgcolor="#f1f2f3">
</body>
It's not working.
Any help?
Thanks again
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-we...@googlegroups.com.
To unsubscribe from this group, send email to google-web-tool...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Hi Ian. Thanks for your post. I'm basically trying to do the same
thing.
I'm following the instructions I've found here...
http://code.google.com/webtoolkit/doc/latest/DevGuideOrganizingProjects.html#DevGuideModuleXml
My gwt.xml file is similar to the following...
<module rename-to='fooapp'>
<inherits name='com.google.gwt.user.User' />
<inherits name='com.google.gwt.user.theme.standard.Standard' />
<entry-point class='com.foo.client.HelloWorld' />
<source path='client' />
<stylesheet src='/mystyle.css' />
</module>
I've also tried using a relative path since the stylesheet exists in
the same directory as the html file for the application itself inside
the war folder.
<stylesheet src='mystyle.css' />
But the styles aren't being incorporated into the page. Any ideas of
what I'm doing wrong?