Hi Jaimon ... > 1) how i can make my web site to fit any resolution?
This isn't a GWT question. You'll want to look at other pages that do this to your liking and investigate how they accomplish it. It typically means setting the width of your elements (panels, etc) to 100% in CSS and adjusting things from there.. > 2) i could not find any tutorial that explains how to work with images > in GWT, so any advice on how to start working and building the > graphics would a be really appreciated. You'll probably want to start with the Image class javadoc. This represents an image in html <img>. From there you'll also want to check out ImageBundle as it is a powerful way to bundle images in your site. > 3) on the few things that i found about graphics on the website they > were always talking about putting every think in tables, is that the > case also in GWT or i should use panels instead? Most all panels in GWT are rendered using tables in HTML, so it is one and the same. Good luck! --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
