# customify/2.10.1/includes/customizer-controls/class-Pix_Customize_CSS_Editor_Control.php

Customify, version 2.10.1. 27 lines.

- Page: https://pluginprobe.com/plugins/customify/2.10.1/code/includes/customizer-controls/class-Pix_Customize_CSS_Editor_Control.php
- Raw: https://pluginprobe.com/plugins/customify/2.10.1/raw/includes/customizer-controls/class-Pix_Customize_CSS_Editor_Control.php
- Modified: 2020-05-21T13:51:24+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/customify/2.10.1/code/includes/customizer-controls/class-Pix_Customize_CSS_Editor_Control.php#L10-L20`.

```php
<?php

class Pix_Customize_CSS_Editor_Control extends Pix_Customize_Control {
	public $type = 'css_editor';

	/**
	 * Render the control's content.
	 */
	public function render_content() { ?>
		<style type="text/css" media="screen">
			#css_editor {
				display: inline-block;
				height: 700px;
				position: absolute;
				top: 130px;
				right: 0;
				bottom: 0;
				left: 0;
				z-index: 99999999;
			}
		</style>

		<textarea <?php $this->link(); ?> id="css_editor_textarea"><?php echo esc_textarea( $this->value() ); ?></textarea>
		<div id="css_editor"></div>
	<?php }
}

```
