• Is is possible to set a background color for a textbox? or give an outline?
    Here is the code for the textbox:

    <div class="cleanlogin-field">
    				<label><?php echo __( 'Last name', 'cleanlogin' ); ?></label>
    				<input type="text" name="last_name" value="<?php echo $current_user->user_lastname; ?>">

Viewing 1 replies (of 1 total)
  • input[type=”text”] {

    background-color : #FA9D3A;

    }

    That CSS rule should do it. Change the HEX value to what you want.

    Best put these kind of changes in a child theme.

Viewing 1 replies (of 1 total)
  • The topic ‘Textbox Background Colour?’ is closed to new replies.