Flare 3 - Toolbar location

This forum is for all Flare related Tips and Tricks.
Have a tip or trick you use while working in Flare? Share it here.
Post Reply
JeffreyBradley
Jr. Propeller Head
Posts: 1
Joined: Mon Jun 22, 2009 7:16 pm

Flare 3 - Toolbar location

Post by JeffreyBradley »

Is there an easy way to make the toolbar position be at the bottom of the page instead of the top? I had made a hack to the Flare 2 output in Default.htm, by adding the javascript code to do this at the end of the embedded onload event. However, in Flare 3 the onload is being handled somewhere in the depths of the included javascript files.
My customer unfortunately doesn't seem to know if there is a way to do this before the project is built, so they have asked me to look at the output from Flare to make it happen on the back end.

Thanks,
Jeffrey Bradley
i-tietz
Propellus Maximus
Posts: 1219
Joined: Wed Oct 24, 2007 4:13 am
Location: Fürth, Germany

Re: Flare 3 - Toolbar location

Post by i-tietz »

The toolbar is displayed in an IFRAME. If it's the only one you use, maybe you could assign a position: in the stylesheet:

Code: Select all

iframe { 
position: fixed;
bottom: 0px; 
margin: 0px; 
}
You will have to change the body style, too, to leave the text of the body above the toolbar:

Code: Select all

body {
...
padding-bottom: 30px;
... }
Problem (?): The scrollbars of the help window will "go past" the Toolbar, if you have them on the body tag (=default). But the toolbar should stay in place, even if you scroll.


But this might be overridden, too. Just a try.
Post Reply