/
var
/
www
/
barefootlaw.org
/
wp-content
/
plugins
/
js_composer
/
config
/
containers
/
Upload File
HOME
<?php if ( ! defined( 'ABSPATH' ) ) { die( '-1' ); } return array( 'name' => __( 'Inner Row', 'js_composer' ), //Inner Row 'content_element' => false, 'is_container' => true, 'icon' => 'icon-wpb-row', 'weight' => 1000, 'show_settings_on_create' => false, 'description' => __( 'Place content elements inside the inner row', 'js_composer' ), 'params' => array( array( 'type' => 'el_id', 'heading' => __( 'Row ID', 'js_composer' ), 'param_name' => 'el_id', 'description' => sprintf( __( 'Enter optional row ID. Make sure it is unique, and it is valid as w3c specification: %s (Must not have spaces)', 'js_composer' ), '<a target="_blank" href="http://www.w3schools.com/tags/att_global_id.asp">' . __( 'link', 'js_composer' ) . '</a>' ), ), array( 'type' => 'checkbox', 'heading' => __( 'Equal height', 'js_composer' ), 'param_name' => 'equal_height', 'description' => __( 'If checked columns will be set to equal height.', 'js_composer' ), 'value' => array( __( 'Yes', 'js_composer' ) => 'yes' ), ), array( 'type' => 'dropdown', 'heading' => __( 'Content position', 'js_composer' ), 'param_name' => 'content_placement', 'value' => array( __( 'Default', 'js_composer' ) => '', __( 'Top', 'js_composer' ) => 'top', __( 'Middle', 'js_composer' ) => 'middle', __( 'Bottom', 'js_composer' ) => 'bottom', ), 'description' => __( 'Select content position within columns.', 'js_composer' ), ), array( 'type' => 'dropdown', 'heading' => __( 'Columns gap', 'js_composer' ), 'param_name' => 'gap', 'value' => array( '0px' => '0', '1px' => '1', '2px' => '2', '3px' => '3', '4px' => '4', '5px' => '5', '10px' => '10', '15px' => '15', '20px' => '20', '25px' => '25', '30px' => '30', '35px' => '35', ), 'std' => '0', 'description' => __( 'Select gap between columns in row.', 'js_composer' ), ), array( 'type' => 'checkbox', 'heading' => __( 'Disable row', 'js_composer' ), 'param_name' => 'disable_element', // Inner param name. 'description' => __( 'If checked the row won\'t be visible on the public side of your website. You can switch it back any time.', 'js_composer' ), 'value' => array( __( 'Yes', 'js_composer' ) => 'yes' ), ), array( 'type' => 'textfield', 'heading' => __( 'Extra class name', 'js_composer' ), 'param_name' => 'el_class', 'description' => __( 'Style particular content element differently - add a class name and refer to it in custom CSS.', 'js_composer' ), ), array( 'type' => 'css_editor', 'heading' => __( 'CSS box', 'js_composer' ), 'param_name' => 'css', 'group' => __( 'Design Options', 'js_composer' ), ), ), 'js_view' => 'VcRowView', );