Default Theme - theme options

Basic theme include: <head> ... <!-- Include Unite Gallery core files --> <script src='unitegallery/js/unitegallery.min.js' type='text/javascript' ></script> <link href='unitegallery/css/unite-gallery.css' rel='stylesheet' type='text/css' /> <!-- include Unite Gallery Theme Files --> <script src='unitegallery/themes/default/ug-theme-default.js' type='text/javascript'></script> <link href='unitegallery/themes/default/ug-theme-default.css' rel='stylesheet' type='text/css' /> ... </head> <!-- in the body part just put the gallery without specifying the theme--> <body> <div id="gallery"> ... </div> <script type="text/javascript"> jQuery(document).ready(function(){ jQuery("#gallery").unitegallery(); }); </script> </body> All theme options: jQuery(document).ready(function(){ jQuery("#gallery").unitegallery({ theme_enable_fullscreen_button: true, //show, hide the theme fullscreen button. The position in the theme is constant theme_enable_play_button: true, //show, hide the theme play button. The position in the theme is constant theme_enable_hidepanel_button: true, //show, hide the hidepanel button theme_enable_text_panel: true, //enable the panel text panel. theme_text_padding_left: 20, //left padding of the text in the textpanel theme_text_padding_right: 5, //right paddin of the text in the textpanel theme_text_align: "left", //left, center, right - the align of the text in the textpanel theme_text_type: "title", //title, description - text that will be shown on the text panel, title or description theme_hide_panel_under_width: 480 //hide panel under certain browser width, if null, don't hide }); });