body{
background-image: url(/img/wood.jpg) repeat;
} Agree with Jens. You can also check the style in dev tools. If it's not being found, it's a problem with the path to the image.
-------------------------------------------
phone.brevity.typos.cheers
Check your browsers dev tools to see if the image / css file gets loaded by the browser or if an HTTP 404 NOT FOUND occurs (see network tab in dev tools). If it is a 404 you should see what the browser tries to load and this should already be enough information to fix the problem.-- J.
--
You received this message because you are subscribed to a topic in the Google Groups "Google Web Toolkit" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-web-toolkit/snOppc2tWnA/unsubscribe.
To unsubscribe from this group and all its topics, send an email to google-web-tool...@googlegroups.com.
To post to this group, send email to google-we...@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.
body{
background-image: url(/img/wood.jpg) repeat;
}
.body{
background-image: url(/img/wood.jpg) repeat;
}
All we can do is assume you have an element that has a class name of body. Have you tried setting the height and width of the body element, and maybe window, to 100%?