"", "Abel" => "Abel", "Abril Fatface" => "Abril Fatface", "Aclonica" => "Aclonica", "Acme" => "Acme", "Actor" => "Actor", "Adamina" => "Adamina", "Advent Pro" => "Advent Pro", "Aguafina Script" => "Aguafina Script", "Aladin" => "Aladin", "Aldrich" => "Aldrich", "Alegreya" => "Alegreya", "Alegreya SC" => "Alegreya SC", "Alex Brush" => "Alex Brush", "Alfa Slab One" => "Alfa Slab One", "Alice" => "Alice", "Alike" => "Alike", "Alike Angular" => "Alike Angular", "Allan" => "Allan", "Allerta" => "Allerta", "Allerta Stencil" => "Allerta Stencil", "Allura" => "Allura", "Almendra" => "Almendra", "Almendra SC" => "Almendra SC", "Amaranth" => "Amaranth", "Amatic SC" => "Amatic SC", "Amethysta" => "Amethysta", "Andada" => "Andada", "Andika" => "Andika", "Angkor" => "Angkor", "Annie Use Your Telescope" => "Annie Use Your Telescope", "Anonymous Pro" => "Anonymous Pro", "Antic" => "Antic", "Antic Didone" => "Antic Didone", "Antic Slab" => "Antic Slab", "Anton" => "Anton", "Arapey" => "Arapey", "Arbutus" => "Arbutus", "Architects Daughter" => "Architects Daughter", "Arimo" => "Arimo", "Arizonia" => "Arizonia", "Armata" => "Armata", "Artifika" => "Artifika", "Arvo" => "Arvo", "Asap" => "Asap", "Asset" => "Asset", "Astloch" => "Astloch", "Asul" => "Asul", "Atomic Age" => "Atomic Age", "Aubrey" => "Aubrey", "Audiowide" => "Audiowide", "Average" => "Average", "Averia Gruesa Libre" => "Averia Gruesa Libre", "Averia Libre" => "Averia Libre", "Averia Sans Libre" => "Averia Sans Libre", "Averia Serif Libre" => "Averia Serif Libre", ); /*-----------------------------------------------------------------------------------*/ /* The Options Array */ /*-----------------------------------------------------------------------------------*/ // Set the Options Array global $of_options; $of_options = array(); // Styling Options $of_options[] = array( "name" => "Styling Options", "type" => "heading"); $of_options[] = array( "name" => "Logo Options" ); $of_options[] = array( "name" => "", "desc" => "Show website name in logo", "id" => "show_website_name", "std" => 1, "folds" => 1, "type" => "checkbox"); $of_options[] = array( "name" => "", "desc" => "Top margin for Logo text.", "id" => "logo_text_top_margin", "std" => "20", "fold" => "show_website_name", "type" => "text"); $of_options[] = array( "name" => "", "desc" => "Left margin for Logo text.", "id" => "logo_text_left_margin", "std" => "20", "fold" => "show_website_name", "type" => "text"); $of_options[] = array( "name" => "", "desc" => "Show image in logo", "id" => "show_website_logo", "std" => 0, "folds" => 1, "type" => "checkbox"); $of_options[] = array( "name" => "Upload Logo", "desc" => "Upload your logo", "id" => "logo_upload", "std" => "", "fold" => "show_website_logo", "type" => "upload"); $of_options[] = array( "name" => "", "desc" => "Top margin for Logo image.", "id" => "logo_img_top_margin", "std" => "", "fold" => "show_website_logo", "type" => "text"); $of_options[] = array( "name" => "", "desc" => "Left margin for Logo image.", "id" => "logo_img_left_margin", "std" => "", "fold" => "show_website_logo", "type" => "text"); $of_options[] = array( "name" => "Custom Favicon", "desc" => "Upload a 16px x 16px Png/Gif image that will represent your website's favicon.", "id" => "custom_favicon", "type" => "upload"); // Layout style $of_options[] = array( "name" => "Boxed Or Wide layout style", "desc" => "Select Layout style between Boxed Or Wide.", "id" => "layout_style", "std" => "", "type" => "select", "options" => array ( "wide" => "wide", "boxed" => "boxed") ); $of_options[] = array( "name" => "Top Line", "desc" => "Disable Top Line", "id" => "top_line_sw", "type" => "checkbox"); $of_options[] = array( "name" => "", "desc" => "Pick a background color for the Top Line.", "id" => "top_line_bg", "type" => "color"); $of_options[] = array( "name" => "", "desc" => "Pick a border bottom color for the Top Line.", "id" => "top_line_border_color", "type" => "color"); $of_options[] = array( "name" => "Body Background", "desc" => "Pick a background color for the theme.", "id" => "body_bg_color", "std" => "", "type" => "color"); $of_options[] = array( "name" => "", "desc" => "", "id" => "body_bg", "std" => "bg61.png", "type" => "tiles", "options" => $bg_images); $of_options[] = array( "name" => "Main content area background", "desc" => "Pick a background color for the center.", "id" => "container_bg_color", "std" => "", "type" => "color"); $of_options[] = array( "name" => "", "desc" => "", "id" => "container_bg", "std" => "", "type" => "tiles", "options" => $bg_images); $of_options[] = array( "name" => "Body Font", "desc" => "Specify the body font properties", "id" => "body_font", "std" => array('size' => '12px','color' => '#cccccc', 'height' => '20px',), "type" => "typography"); $of_options[] = array( "name" => "Body Font-Family", "desc" => "Select a google font", "id" => "web_font", "std" => "", "type" => "select", "options" => $google_fonts); $of_options[] = array( "name" => "Header Background", "desc" => "Pick a background color for the header.", "id" => "header_bg_color", "type" => "color"); $of_options[] = array( "name" => "", "desc" => "", "id" => "header_bg", "std" => "no_bg.png", "type" => "tiles", "options" => $bg_images, ); $of_options[] = array( "name" => "Menu Font properties", "desc" => "", "id" => "menu_font", "std" => array('size' => '16px','color' => '','style' => ''), "type" => "typography"); $of_options[] = array( "name" => "Menu items text-transform", "desc" => "Select items text-transform.", "id" => "menu_items_text_transform", "type" => "radio", "options" => array( "lowercase" => "lowercase", "uppercase" => "uppercase", "none" => "none" ) ); $of_options[] = array( "name" => "SubMenu Background", "desc" => "", "id" => "sub_menu_bg", "std" => "", "type" => "color"); $url = ADMIN_DIR . 'icons/'; $of_options[] = array( "name" => "Choose zoom icons in Portfolio", "desc" => "Choose icons for image hover.", "id" => "imgicons", "std" => "enlarge-gray.png", "type" => "images", "options" => array( 'search-submit.png' => $url . 'search-submit.png', 'enlarge.png' => $url . 'enlarge.png', 'enlarge-gray.png' => $url . 'enlarge-gray.png', // 'plus.png' => $url . 'plus.png' )); $of_options[] = array( "name" => "Footer Background", "desc" => "Pick a background color for the footer.", "id" => "footer_bg_color", "std" => "", "type" => "color"); $of_options[] = array( "name" => "", "desc" => "", "id" => "footer_bg", "std" => "no.bg", "type" => "tiles", "options" => $bg_images, ); $of_options[] = array( "name" => "Footer text color", "desc" => "Pick a text color for the footer.", "id" => "footer_text_color", "std" => "#4a4a4a", "type" => "color"); $of_options[] = array( "name" => "Footer headers text color", "desc" => "Pick a headers text color for the footer.", "id" => "footer_headers_text_color", "std" => "#a3b0b6", "type" => "color"); $of_options[] = array( "name" => "Footer copiryght text", "desc" => "", "id" => "footer_text", "std" => "Powered by Wordpress.", "type" => "textarea"); $of_options[] = array( "name" => "Custom CSS", "desc" => "Quickly add some CSS to your theme by adding it to this block.

For example:
.menu a {color: #000; text-decoration: underline;}", "id" => "custom_css", "std" => "", "type" => "textarea"); // Backup Options $of_options[] = array( "name" => "Backup Options", "type" => "heading"); $of_options[] = array( "name" => "Backup and Restore Options", "id" => "of_backup", "std" => "", "type" => "backup", "desc" => 'You can use the two buttons below to backup your current options, and then restore it back at a later time. This is useful if you want to experiment on the options but would like to keep the old settings in case you need it back.', ); } } ?>