# catch-web-tools/3.2/admin/modules/custom-css.php

Catch Web Tools, version 3.2. 52 lines.

- Page: https://pluginprobe.com/plugins/catch-web-tools/3.2/code/admin/modules/custom-css.php
- Raw: https://pluginprobe.com/plugins/catch-web-tools/3.2/raw/admin/modules/custom-css.php
- Modified: 2026-04-05T08:24:42+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/catch-web-tools/3.2/code/admin/modules/custom-css.php#L10-L20`.

```php
<?php

// Exit if accessed directly
if (! defined('ABSPATH')) exit;

/**
 * @package Admin
 * @sub-package Admin Custom CSS Display
 */
?>
<?php include('header.php'); ?>
<div id="customcss">
    <div class="content-wrapper">
        <div class="header">
            <h3><?php esc_html_e('Custom CSS', 'catch-web-tools'); ?></h3>
        </div> <!-- .header -->
        <div class="content">
            <form method="post" action="options.php">
                <?php settings_fields('custom-css-settings-group'); ?>
                <?php $settings = catchwebtools_get_options('catchwebtools_custom_css'); ?>
                <div class="option-container">
                    <h3 class="option-toggle option-active"><a href="#"><?php esc_html_e('Custom Css Settings', 'catch-web-tools'); ?></a></h3>
                    <div class="option-content inside open">
                        <table class="form-table">
                            <tbody>
                                <tr>
                                    <th scope="row"><?php esc_html_e('Enter Custom Css', 'catch-web-tools'); ?></th>
                                    <td>
                                        <?php
                                        $text = (! empty($settings)) ? esc_html($settings) : '';
                                        echo '<textarea cols="80" rows="7" name="catchwebtools_custom_css">' . esc_html($text) . '</textarea>';
                                        echo '<p class="description">' . esc_html__('You can just add your Custom CSS and save, it will show up in the frontend head section. Leave it blank if it is not needed.', 'catch-web-tools') . '<p class="description">';
                                        ?>
                                    </td>
                                </tr>
                                <tr>
                                    <th scope="row"><?php esc_html_e('CSS Tutorial from W3Schools.', 'catch-web-tools'); ?></th>
                                    <td>
                                        <a class="button" href="<?php echo esc_url('http://www.w3schools.com/css/default.asp'); ?>" title="<?php esc_attr_e('CSS Tutorial', 'catch-web-tools'); ?>" target="_blank"><?php esc_html_e('Click Here to Read', 'catch-web-tools'); ?></a>
                                    </td>
                                </tr>
                            </tbody>
                        </table>
                        <?php submit_button('Save Changes'); ?>
                    </div>
                </div>
            </form>
        </div><!-- .container -->
    </div><!-- .content-wrapper -->
</div><!-- #customcss -->

<?php include('main-footer.php'); ?>
```
