How to resize comment window
-
On my site in answer form i have big comment window http://imglink.ru/show-image.php?id=23f8b00223f15eeab77087af017456a9.
How can i make it smaller?
-
Please send me your site URL, I will check and help you resolve it.
https://robotbro.ru/questions/vopros-tolko-chto/
If you want to see comment form, you should be registered
<?php
/**
* The template for displaying answer submit form
*
* @package DW Question & Answer
* @since DW Question & Answer 1.4.3
*/
?><div class=”dwqa-answer-form”>
<?php do_action( ‘dwqa_before_answer_submit_form’ ); ?>
<div class=”dwqa-answer-form-title”><?php _e( ‘Your Answer’, ‘dwqa’ ) ?></div>
<form name=”dwqa-answer-form” id=”dwqa-answer-form” method=”post”>
<?php dwqa_print_notices(); ?>
<?php $content = isset( $_POST[‘answer-content’] ) ? sanitize_text_field( $_POST[‘answer-content’] ) : ”; ?>
<?php dwqa_init_tinymce_editor( array( ‘content’ => $content, ‘textarea_name’ => ‘answer-content’, ‘placeholder’ => ‘Ответ’, ‘id’ => ‘dwqa-answer-content’ ) ) ?>
<?php dwqa_load_template( ‘captcha’, ‘form’ ); ?><?php if ( dwqa_current_user_can( ‘post_answer’ ) && !is_user_logged_in() ) : ?>
<p>
<label for=”user-email”><?php _e( ‘Your Email’, ‘dwqa’ ) ?></label>
<?php $email = isset( $_POST[‘user-email’] ) ? sanitize_email( $_POST[‘user-email’] ) : ”; ?>
<input type=”email” class=”” name=”user-email” value=”<?php echo $email ?>” >
</p>
<p>
<label for=”user-name”><?php _e( ‘Your Name’, ‘dwqa’ ) ?></label>
<?php $name = isset( $_POST[‘user-name’] ) ? esc_html( $_POST[‘user-name’] ) : ”; ?>
<input type=”text” class=”” name=”user-name” value=”<?php echo $name ?>” >
</p>
<?php endif; ?><select class=”dwqa-select” name=”dwqa-status”>
<optgroup label=”<?php _e( ‘Who can see this?’, ‘dwqa’ ) ?>”>
<option value=”publish”><?php _e( ‘Public’, ‘dwqa’ ) ?></option>
<option value=”private”><?php _e( ‘Only Me & Admin’, ‘dwqa’ ) ?></option>
</optgroup>
</select><input type=”submit” name=”submit-answer” class=”dwqa-btn dwqa-btn-primary” value=”<?php _e( ‘Submit’, ‘dwqa’ ) ?>”>
<input type=”hidden” name=”question_id” value=”<?php the_ID(); ?>”>
<input type=”hidden” name=”dwqa-action” value=”add-answer”>
<?php wp_nonce_field( ‘_dwqa_add_new_answer’ ) ?>
</form>
<?php do_action( ‘dwqa_after_answer_submit_form’ ); ?>
</div>Sorry, previous comment should not be here, i can not delete it
I have not the permission to read the comment box. In this case, you can add the following code to the style.css file:
.dwqa-comment-form .comment-form textarea { height: 40px !important; }I just added code in the end of file and it does not work.Mayby there is another way?
Are you still here? I can not solve this problem even if i change style.css
What should i do?Give me your single question link, I will check it and help you resolve it.
The topic ‘How to resize comment window’ is closed to new replies.