Skip to main content

Custom CSS for Recorder

Learn how to customize your recorder settings to disable automatic capitalization in notes.

Vatsal Shah avatar
Written by Vatsal Shah
Updated over 2 weeks ago

Disable Auto-Capitalization

Overview

By default, text fields in the recorder might automatically capitalize the first letter of your input. This can be inconvenient for fields like notes or custom questions where you need precise control over capitalization.

This guide shows you how to disable this automatic capitalization for specific input fields, giving you more flexibility when entering information.

How It Works

You can control the auto-capitalization behavior using Custom CSS. By adding a specific code snippet to your recorder settings, you instruct the browser not to force capitalization on text inputs.

Keep in mind that while this CSS will prevent the browser from automatically capitalizing text, some mobile keyboards may still default to capitalizing the first letter. This behavior is typically controlled by the user's device settings.

Getting Started

To access this feature, go to Recorder β†’ Settings in your dashboard.

Configuration

Follow these steps to disable auto-capitalization:

  1. Navigate to Recorder > Settings.

  2. Scroll down to the Custom CSS section.

  3. Add the following CSS code:

    input, textarea {
        text-transform: none !important;
    }

  4. Save your settings.

Next Steps

Ready to get started?

  • Login to your account and navigate to the Recorder settings.

  • Add the Custom CSS provided in this guide.

  • Save your changes and test it out on your input fields.

Need help? Contact our support team or check out our other guides.

Did this answer your question?