Hi all,

I have been playing with this for a long time and can not make it
work.

I created the following panels

AbsolutePanel MasterPanel = new AbsolutePanel();
Frame HeaderPanel = new Frame();
VerticalPanel MenuPanel = new VerticalPanel();
HorizontalPanel QuickMenuPanel = new HorizontalPanel();

Set the URL for both frames.

MasterPanel.setSize(MasterPanelWidth + "px", MasterPanelHight + "px");
MasterPanel.setStyleName("MasterPanel");
MasterPanel.add(HeaderPanel, HeaderPanelLeft, HeaderPanelTop);
MasterPanel.add(MenuPanel, MenuPanelLeft, MenuPanelTop);
MasterPanel.add(PagePanel, PagePanelLeft, PagePanelTop);
MasterPanel.add(QuickMenuPanel, QuickMenuPanelLeft,
QuickMenuPanelTop);


These URL (html pages) have background images.  I noticed that the
page within the frame always has a white border around it, thus making
it not fit.  How does one define a frame and load a URL into it and
make it fit the full frame.

Also, I noticed that frames always have a border around them, how can
I turn this off.  I have tried

.gwt-Frame {
  margin: 0px 0px 0px 0px;
  border: 0;
}

in the CSS file and also tried to set my own entry for both frames and
the MasterPanel.  Nothing seems to work.

Would love some help.

GWT seems to be real good when thats all you use but when intergration
into old HTML pages it seems to have a problem.  I might not be
understanding the model for this.

Thanks

Donald W. Long  ([email protected])



--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to