Grid 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/grid/ug-theme-grid.js' type='text/javascript'></script> ... </head> <body> <div id="gallery"> ... </div> <script type="text/javascript"> jQuery(document).ready(function(){ jQuery("#gallery").unitegallery({ gallery_theme: "grid" }); }); </script> </body> All theme options: jQuery(document).ready(function(){ jQuery("#gallery").unitegallery({ gallery_theme: "grid", theme_panel_position: "right", //left, right - thumbs panel position theme_hide_panel_under_width: 480 //hide panel under certain browser width, if null, don't hide }); });