# formidable/5.2/classes/views/frm-fields/back-end/pixels-wide.php

Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes &amp; More, version 5.2. 22 lines.

- Page: https://pluginprobe.com/plugins/formidable/5.2/code/classes/views/frm-fields/back-end/pixels-wide.php
- Raw: https://pluginprobe.com/plugins/formidable/5.2/raw/classes/views/frm-fields/back-end/pixels-wide.php
- Modified: 2020-12-07T20:56:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/formidable/5.2/code/classes/views/frm-fields/back-end/pixels-wide.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}
?>
<p class="<?php echo esc_attr( $display_max ? 'frm6 frm_form_field' : '' ); ?>">
	<label for="field_options_size_<?php echo esc_attr( $field['id'] ); ?>">
		<?php esc_html_e( 'Field Size', 'formidable' ); ?>
		<span class="frm-sub-label">
			<?php esc_html_e( '(%, px, em)', 'formidable' ); ?>
		</span>
	</label>

	<input type="text" name="field_options[size_<?php echo esc_attr( $field['id'] ); ?>]" value="<?php echo esc_attr( $field['size'] ); ?>" size="5" id="field_options_size_<?php echo esc_attr( $field['id'] ); ?>" aria-describedby="howto_size_<?php echo esc_attr( $field['id'] ); ?>" />
</p>

<?php
if ( $display_max ) {
	include( FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/max.php' );
}
?>

```
