Quote:
Originally Posted by Caretaker2k
A little Question ...
How i can integrate/update the actual floatbox version v3.53.0?
|
Download the latest version and set your settings and licence key into floatbox.js.
Upload it to your site into the floatbox directory (under clientscripts), overwriting the existing script.
Find the template: tcattd_imageresizer_headinclude_floatbox
In that template find:
Code:
<script type="text/javascript">
<!--
function setFloatboxOptions() {
fb.resizeDuration = 3;
fb.imageFadeDuration = 5;
fb.overlayFadeDuration = 3;
fb.navType = 'both';
fb.theme = 'auto';
fb.showUpperNav = 'always';
fb.upperOpacity = 50;
fb.resizeOrder = 'width';
fb.preloadAll = 'false';
};
//-->
</script>
And replace it with:
Code:
<script type="text/javascript">
<!--
fbPageOptions = {
cornerRadius: 20
};
//-->
</script>
Now you can run your config page at:
../forum/clientscript/floatbox/configurator.html
and replace the red bit of code above with the output of the config page to change the settings (don't forget to CTRL F5 to see the new settings).
Worked for me!