'', 'image' => '', 'repeat' => 'repeat', 'position' => 'top center', 'attachment'=>'scroll' ); // Typography Defaults $typography_defaults = array( 'size' => '15px', 'face' => 'georgia', 'style' => 'bold', 'color' => '#bada55' ); // Typography Options $typography_options = array( 'sizes' => array( '6','12','14','16','20' ), 'faces' => array( 'Helvetica Neue' => 'Helvetica Neue','Arial' => 'Arial' ), 'styles' => array( 'normal' => 'Normal','bold' => 'Bold' ), 'color' => false ); // If using image radio buttons, define a directory path $imagepath = get_template_directory_uri() . '/images/'; $options = array(); $options[] = array( 'name' => __('Basic Settings', 'options_framework_theme'), 'type' => 'heading'); $options[] = array( 'name' => __('Theme Colour', 'options_framework_theme'), 'desc' => __('Select the base colour of the theme', 'options_framework_theme'), 'id' => 'colour', 'std' => 'green', 'type' => 'radio', 'options' => $test_array); $options[] = array( 'name' => __('Logo', 'options_framework_theme'), 'desc' => __('Upload your logo image. Maximum height is 100 pixels.', 'options_framework_theme'), 'id' => 'logo_uploader', 'type' => 'upload'); $options[] = array( 'name' => "Banner Image", 'desc' => "Select the image used under the heading.", 'id' => "banner_image", 'std' => "horse", 'type' => "images", 'options' => array( 'horse' => $imagepath . 'banners\'1.jpg', 'forrest' => $imagepath . 'banners\'2.jpg' )); return $options; }