Skip to content

Commit ae18a0c

Browse files
increase size of text field for site ID
1 parent 17fa1d0 commit ae18a0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fathom-analytics.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ function fathom_print_url_setting_field( $args = array() ) {
134134
function fathom_print_site_id_setting_field( $args = array() ) {
135135
$value = get_option( FATHOM_SITE_ID_OPTION_NAME );
136136
$placeholder = 'ABCDEF';
137-
echo sprintf( '<input type="text" name="%s" id="%s" class="small-text" value="%s" placeholder="%s" />', FATHOM_SITE_ID_OPTION_NAME, FATHOM_SITE_ID_OPTION_NAME, esc_attr( $value ), esc_attr( $placeholder ) );
137+
echo sprintf( '<input type="text" name="%s" id="%s" class="regular-text" value="%s" placeholder="%s" />', FATHOM_SITE_ID_OPTION_NAME, FATHOM_SITE_ID_OPTION_NAME, esc_attr( $value ), esc_attr( $placeholder ) );
138138
echo '<p class="description">' . __( 'Find your site ID by by clicking the gearwheel in your Fathom dashboard.', 'fathom-analytics' ) . '</p>';
139139
}
140140

0 commit comments

Comments
 (0)