In the HTML page, I have written this line in the HEAD section:
<link rel="stylesheet" href="style.css" type="text/css">
This is the CSS code:
.gwt-Frame {
border: 0;
}
I have tried with "border:0px", "border:none"... even "border: 5px
#FF0000", but the border didn't change at all... so I think it could be
that I haven't linked the CSS page properly, but I don't know how I
should solve this
By the way, I also inserted a "cabecera.setStyleName("gwt-Frame")" line
in the java code but, do I really need it with the default style name?
Any ideas of how to do this?
Thanks
So if after creating your frame, you do something like
frame.setStyleName("gwt-Frame"); do you get any different results
with your css?
-jason
>
> Actually, I always get the same result: no changes :(
oops, at first I missed:
> By the way, I also inserted a "cabecera.setStyleName("gwt-Frame")"
> line
> in the java code but, do I really need it with the default style name?
so, normally, you wouldn't have to do that, but google's frame
implementation forgets to set it.
-jason
so, that's why it sometimes worked in firefox, but never in IE...
problem solved, thank you :D
2006/11/13, Mat Gessel <>: