• Resolved Jessica

    (@assimila)


    I’d like to change the width of my paragraph text field and the following code works great:

    div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium {
        width: 60% !important;
    }

    But I notice it also minimizes for mobile/responsive sizes too and I’d like to keep the full width for mobile devices instead of getting smaller.

    Is this possible?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Ethan Choi

    (@ethanchoi)

    Hi assimila,

    To do what you’ve described, you can try the following custom CSS:

    @media only screen and (max-width: 600px) {
        div.wpforms-container-full .wpforms-form textarea.wpforms-field-medium {
            width: 100% !important;
        }
    }
    

    I hope this helps ??

    Thread Starter Jessica

    (@assimila)

    Thanks Ethan! That worked great. I appreciate it.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Paragraph Width for Desktop/Mobile’ is closed to new replies.