How to reduce the width of border of answer text box | XM Community
Skip to main content

How to reduce the width of border of answer text box

  • August 29, 2022
  • 1 reply
  • 18 views

Forum|alt.badge.img

How can I specify the border width of text box using JAVA script in CSS.
I have written down this code:
input.TextEntryBox {
border-radius: 6px; 
margin: 6p;
}

1 reply

Deepak
QPN Level 8 ●●●●●●●●
Forum|alt.badge.img+46
  • August 29, 2022

Hii ujjwalagupta

You can paste the code into your Look and Feel --Style-- Custom CSS section. Just FYI it will be applied for all Text entry questions

.Skin .TE .SL .InputText {
border-radius: 6px;
margin: 6px;
max-width: 50%
}

Hope this helps!