• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

How to change text-input area to allow resize on both vertical and horizontal?

john365

Chevereto Member
app/themes/Peafowl/snippets/form_image.php

<div class="input-label">
<label for="form-image-description"><?php _se('Description'); ?> <span class="optional"><?php _se('optional'); ?></span></label>
<textarea id="form-image-description" name="form-image-description" class="text-input no-resize" placeholder="<?php _se('Brief description of this image'); ?>"><?php echo function_exists('get_image_safe_html') ? get_image_safe_html()["description"] : NULL; ?></textarea>
</div>

How can I change this to allow resize on both vertical and horizontal?

Thought it would be like this: resize: none|both|horizontal|vertical|initial|inherit;

However, it seems to be like this: resize-vertical
 
The base CSS doesn't include a class for textarea horizontal resize inside a modal box because this happens:

2449

The textarea doesn't shape that modal, is the opposite.

If you want that then add a custom CSS for that textarea:

CSS:
.modal-form textarea {
    resize: both !important;
}
 
Back
Top