Geogebra Applets border

Geogebra Applets border

by Daniel Grosso -
Number of replies: 2
Hi!

Can anyone tell me how can I remove the geogebra applet's border? Or, at least, change his color? (Our designer is a pain in the ass! lol ) I'm not sure if this is made at geogebra itself or with applet publishing parameters. I tried several "param tags" but: nothing done yet!

Thanks in advance!

Daniel Grosso
Average of ratings: -
In reply to Daniel Grosso

Ang: Geogebra Applets border

by Niels Johnsen -
CSS should work fine. Put style="border-width:0px" inside the applet-tag, not the parameters (they are read by the applet, not the browser).

Even fancier would be to declare a style, e.g.
APPLET.geogebra{
border-width: 1px;
border-style: outset;
border-color:#ffffff;
}

and then place class="geogebra" inside the applet-tag.

Best regards,
Niels Johnsen
In reply to Niels Johnsen

Re: Ang: Geogebra Applets border

by Daniel Grosso -
Hi again,

I had already tried that but the border still appears..i wonder if the border is placed directly in the applet, with Java, instead of HTML. I posted this problem in geogebra forum. When i get a answer i will share it here...

Thanks Niels!