How to create a border in the textfield

Hi there,

I want to create a border for the text field. I want the border to be created around the textbox only, without the title included in it.

like the following: please advise
image

Hello @jyou,

You can use this CSS:

.fd-field-control input{
    border-color: #000000 !important; 
    border: 1px solid;
}
1 Like

Wow, thank you for posting this answer and thank you @jyou for asking it. I've had request to make the text boxes stand out more in the SharePoint forms and the only way I managed was to apply a background color to the form slightly darker than the white text boxes.

2 Likes