Sid Gifari File Manager
🏠 Root
/
home
/
ailwtbdh
/
lynchestinegroup.com
/
wp-content
/
themes
/
koncrete
/
inc
/
options
/
Editing: typography.php
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.0 */ namespace radiustheme\Koncrete; use \Redux; $opt_name = Constants::$theme_options; Redux::setSection( $opt_name, array( 'title' => esc_html__( 'Typography', 'koncrete' ), 'id' => 'typo_section', 'icon' => 'el el-text-width', 'fields' => array( array( 'id' => 'typo_body', 'type' => 'typography', 'title' => esc_html__( 'Body', 'koncrete' ), 'text-align' => false, 'font-weight' => false, 'color' => false, 'subsets' => false, 'default' => array( 'google' => true, 'font-family' => 'Roboto', 'font-weight' => '400', 'font-size' => '16px', 'line-height' => '28px', ), ), array( 'id' => 'typo_h1', 'type' => 'typography', 'title' => esc_html__( 'Header h1', 'koncrete' ), 'text-align' => false, 'font-weight' => false, 'color' => false, 'subsets' => false, 'default' => array( 'google' => true, 'font-family' => 'Rubik', 'font-weight' => '500', 'font-size' => '36px', 'line-height' => '40px', ), ), array( 'id' => 'typo_h2', 'type' => 'typography', 'title' => esc_html__( 'Header h2', 'koncrete' ), 'text-align' => false, 'font-weight' => false, 'color' => false, 'subsets' => false, 'default' => array( 'google' => true, 'font-family' => 'Rubik', 'font-weight' => '500', 'font-size' => '28px', 'line-height' => '36px', ), ), array( 'id' => 'typo_h3', 'type' => 'typography', 'title' => esc_html__( 'Header h3', 'koncrete' ), 'text-align' => false, 'font-weight' => false, 'color' => false, 'subsets' => false, 'default' => array( 'google' => true, 'font-family' => 'Rubik', 'font-weight' => '500', 'font-size' => '22px', 'line-height' => '30px', ), ), array( 'id' => 'typo_h4', 'type' => 'typography', 'title' => esc_html__( 'Header h4', 'koncrete' ), 'text-align' => false, 'font-weight' => false, 'color' => false, 'subsets' => false, 'default' => array( 'google' => true, 'font-family' => 'Rubik', 'font-weight' => '500', 'font-size' => '20px', 'line-height' => '28px', ), ), array( 'id' => 'typo_h5', 'type' => 'typography', 'title' => esc_html__( 'Header h5', 'koncrete' ), 'text-align' => false, 'font-weight' => false, 'color' => false, 'subsets' => false, 'default' => array( 'google' => true, 'font-family' => 'Rubik', 'font-weight' => '500', 'font-size' => '18px', 'line-height' => '26px', ), ), array( 'id' => 'typo_h6', 'type' => 'typography', 'title' => esc_html__( 'Header h6', 'koncrete' ), 'text-align' => false, 'font-weight' => false, 'color' => false, 'subsets' => false, 'default' => array( 'google' => true, 'font-family' => 'Rubik', 'font-weight' => '500', 'font-size' => '16px', 'line-height' => '22px', ), ), array( 'id' => 'section-mainmenu', 'type' => 'section', 'title' => esc_html__( 'Main Menu Items', 'koncrete' ), 'indent' => true, ), array( 'id' => 'menu_typo', 'type' => 'typography', 'title' => esc_html__( 'Menu Font', 'koncrete' ), 'text-align' => false, 'color' => false, 'subsets' => false, 'text-transform' => true, 'default' => array( 'google' => true, 'font-family' => 'Roboto', 'font-weight' => '500', 'font-size' => '15px', 'line-height' => '26px', 'text-transform' => 'uppercase', ), ), array( 'id' => 'section-submenu', 'type' => 'section', 'title' => esc_html__( 'Sub Menu Items', 'koncrete' ), 'indent' => true, ), array( 'id' => 'submenu_typo', 'type' => 'typography', 'title' => esc_html__( 'Submenu Font', 'koncrete' ), 'text-align' => false, 'color' => false, 'subsets' => false, 'text-transform' => true, 'default' => array( 'google' => true, 'font-family' => 'Roboto', 'font-weight' => '500', 'font-size' => '14px', 'line-height' => '26px', 'text-transform' => 'none', ), ), array( 'id' => 'section-resmenu', 'type' => 'section', 'title' => esc_html__( 'Mobile Menu', 'koncrete' ), 'indent' => true, ), array( 'id' => 'resmenu_typo', 'type' => 'typography', 'title' => esc_html__( 'Mobile Menu Font', 'koncrete' ), 'text-align' => false, 'color' => false, 'subsets' => false, 'text-transform' => true, 'default' => array( 'google' => true, 'font-family' => 'Roboto', 'font-weight' => '500', 'font-size' => '14px', 'line-height' => '21px', 'text-transform' => 'none', ), ), ) ) );
Save
Cancel