/******************************************* GENERAL ********************************************/
$gallery_page_title = 'My Image Gallery'; // Page title, Eg: 'My Gallery'.
$imgs_columns = 3; // Images across, use 1 through to 4 or 0 to ignore. $imgs_rows = 3; // Images down, use 1 through to 4 or 0 to ignore.
$body_bg_colour = 'fff'; // Page background colour, Eg: 'cccccc', 'ccc' or 'silver'.
$body_padding_top = 25; // px distance down from top of page.
/**************************************** IMAGE CREATION *****************************************/
$img_thumb_quality = 50; // % quality of the thumb images if the GD library is available and selected to use $img_view_quality = 90; // % dito
/* IMPORTANT NOTE ON THE FOLLOWING '$img_use_gd' OPTION
$img_use_gd_for_thumbs = true; // If true & the GD library is available 'thumb' images will be created on the fly. $img_use_gd_for_view = false; // If true & the GD library is available 'view' images will be created on the fly.
/************************ GALLERY TEXT TITLE HEADER AT TOP OF GALLERY STYLE *************************/
$header_text = 'My Gallery'; // Gallery header text - (Leave blank not to show a heading).
// The following Gallery text styles will be ignored if $header_text is empty.
$header_text_colour = 'B25008'; // Eg: 'cccccc', 'ccc' or 'silver'. $header_text_fill_colour = 'F2F2F2'; // Eg: 'cccccc', 'ccc' or 'silver'. $header_text_border = 'solid'; // 'dashed' or 'solid'. $header_text_border_colour = 'ccc'; // Eg: 'cccccc', 'ccc' or 'silver'. $header_text_border_width = 1; // px width of border.
$header_text_font_family = 'Verdana, sans-serif'; // Eg: 'Arial, sans-serif', 'Verdana, Arial, serif' or 'Verdana'.$header_text_font_size = 20; // px height of title header text. $header_text_padding_tb = 3; // px padding top and bottom of title header text. $header_text_align = 'center'; // Eg: 'left', 'center' or 'right'.
// If $header_text_align is set to left or right then you can set the left or right padding using the following variable.
$header_text_padding_rl = 0; // px padding left or right of title header text (Ignored if $header_text_align = 'center').
/********************************** NAVIGATION LINK TEXT STYLE ************************************/
$links_preceed = ''; // Eg: 'Go to:', 'Navagate:' or just leave blank'. $links_previous = 'Previous'; // Eg: 'Previous', 'Back' or '<<' - (Defaults to: 'Previous' if empty). $links_next = 'Next'; // Eg: 'Next', 'Forward' or '>>' - (Defaults to: 'Next' if empty). $links_pn_hide = false; // Eg: true or false - true hides the $links_previous & $links_next texts when not live.
$link_text_font_fam = 'Verdana, sans-serif'; // Eg: 'Arial, sans-serif', 'Verdana, Arial, serif' or 'Verdana'. $link_text_font_size = 11; // px height of link text - (10 minimum). $link_text_colour = '999'; // Eg: 'cccccc', 'ccc' or 'silver'. $link_text_hover_colour = '000'; // Eg: 'cccccc', 'ccc' or 'silver'. $link_text_link_colour = 'B25008'; // Eg: 'cccccc', 'ccc' or 'silver'. $link_text_link_decoration = 'underline'; // Eg: 'underline', 'italic' or '' - (Use '' for 'none'). $link_text_align = 'center'; // Eg: 'left', 'center' or 'right'. $link_text_link_margin = 5; // px spacing under links.
/*********************************** ALL IMAGE SPECIFIC STYLE *************************************/
$img_alt = 'Loading...'; // image alt text (Can be left empty but it should really have a value).
/************************************* ZOOM SPECIFIC STYLE ***************************************/
$img_zoom_width = 300; // px width of thumb image. (Defaults to 220 if > 400 and < 150). $img_zoom_height = 225; // px height of thumb image. (Defaults to 165 if > 304 and < 114).
$view_use_popup = false; // true or false, true opens thumb in a popup, false reloads it in the same window.
// If $view_use_popup IS SET to true use these variables - OTERWISE THEY WILL BE IGNORED
$img_view_left = 10; // The distance the view popup opens in from the left of the screen. $img_view_top = 10; // The distance the view popup opens down from the top of the screen.
$img_view_resizable = 'no'; // 'no' or 'yes', Make the zoom view window resizable (Default is 'no'). $img_view_status = 'yes'; // 'no' or 'yes', Show the zoom view window status (Default is 'yes').
// If $view_use_popup IS NOT SET to true these variables will be used - OTERWISE THEY WILL BE IGNORED
$img_zoom_border = 'solid'; // 'dashed' or 'solid'. $img_zoom_border_width = 1; // px width of border. $img_zoom_border_fill = '000'; // Eg: 'cccccc', 'ccc' or 'silver'. $img_zoom_padding = 5; // px padding between zoom image and border. $img_zoom_padding_out_fill = 'eee'; // Eg: 'cccccc', 'ccc' or 'silver'. $img_zoom_padding_out = 24; // px padding on outer side of thumb image border. $img_zoom_border_out = 'solid'; // 'dashed' or 'solid'. $img_zoom_border_out_width = 1; // px width of border. $img_zoom_border_out_fill = 'ccc'; // Eg: 'cccccc', 'ccc' or 'silver'.
$zoom_view_back = 'Go Back'; // Text for the javascript back link for the zoom view image (Defalut is 'Go Back').
/************************************ THUMB SPECIFIC STYLE ***************************************/
$img_thumb_margin = 3; // Space between images. $img_thumb_border = 'solid'; // 'dashed' or 'solid'. $img_thumb_border_width = 1; // px width of border. $img_thumb_border_fill = '999999'; // Eg: 'cccccc', 'ccc' or 'silver'.
$img_thumb_padding = 2; // px padding between thumb image and thumb image border. $img_thumb_padding_out_fill = 'eee'; // Eg: 'cccccc', 'ccc' or 'silver'. $img_thumb_padding_out = 5; // px padding on outer side of thumb image border. $img_thumb_border_out = 'solid'; // 'dashed' or 'solid'. $img_thumb_border_out_width = 1; // px width of border. $img_thumb_border_out_fill = 'ccc'; // Eg: 'cccccc', 'ccc' or 'silver'.
$img_thumb_width = 100; // px width of thumb image. $img_thumb_height = 75; // px height of thumb image.
|