I'm looking to turn frames in Prezi into solid colour. They're currently transparent. This is the CSS code. Any suggestions?
Thanks, Danielle
circle
{
borderAlpha: 1;
gradEndAlpha: 1;
gradStartAlpha: 1;
lockTintAlpha: 1;
On
I was only using circles so I manipulated the frame.rectangle so I could use background gradients and borders. Increasing the radius to 900 and then changing the grad properties.
frame.rectangle
{
borderAlpha: 1;
borderColor: #318bff;
borderThickness: 10;
gradEndAlpha: .9;
gradEndColor: #ccc;
gradStartAlpha: .9;
gradStartColor: #fff;
radius: 900;
thickness: 3;
}
As far as I can see, circles are meant to only be outlines. So in order to make them solid, you need to set the
thicknessto be significantly higher. I achieved a solid yellow circle like so:Set
gradEndColorandgradStartColorto the color you'd like - http://www.colorpicker.com/ should help you find the hexadecimal code (#123456) to replace it with!