1

ここにフォームがありますが、何らかの理由で Firefox で入力内をクリックできません。他のブラウザーでは問題なく動作します。誰が問題が何であるか知っていますか?

ありがとう

<form method="post" id="adduser" class="user-forms" action="http://<?php echo $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; ?>">



                <p class="form-username">
                    <label for="user_name"><?php _e('Username (required)', 'frontendprofile'); ?></label>
                    <input class="text-input" name="user_name" type="text" id="user_name" value="<?php if ( $error ) echo esc_html( $_POST['user_name'], 1 ); ?>" />
                </p><!-- .form-username -->

 <p class="last_name">
                    <label for="first_name"><?php _e('First Name', 'frontendprofile'); ?></label>
                    <input class="text-input" name="first_name" type="text" id="first_name" value="<?php if ( $error ) echo esc_html( $_POST['first_name'], 1 ); ?>" />
                </p><!-- .last_name -->
                <p class="last_name">
                    <label for="last_name"><?php _e('Last Name', 'frontendprofile'); ?></label>
                    <input class="text-input" name="last_name" type="text" id="last_name" value="<?php if ( $error ) echo esc_html( $_POST['last_name'], 1 ); ?>" />
                </p><!-- .last_name -->



                <p class="form-email">
                    <label for="email"><?php _e('E-mail (required)', 'frontendprofile'); ?></label>
                    <input class="text-input" name="email" type="text" id="email" value="<?php if ( $error ) echo esc_html( $_POST['email'], 1 ); ?>" />
                </p><!-- .form-email -->



            </form>
4

2 に答える 2

3

ここでのパディング ルールが問題を引き起こしています (69 行目):

.style-profile textarea, .style-profile input[type="text"] {
    padding: 17px !important;
}

入力の高さが固定されているため、そのルールは実際にはクリック可能な領域を閉じており、Firefox を混乱させています。

于 2013-06-06T08:50:05.780 に答える
0

line 7全体を削除する必要があります。次のように表示されます。

<center><a href="http://style-card.co.uk/id" border="0"><img src="http://style-card.co.uk/id/wp-content/uploads/2013/03/sclogo.jpg" border="0"></center>

開始フォームタグline 142line 153これに移動して、問題を解決する必要があります

于 2013-06-06T08:31:40.023 に答える