Hello @JohannesCE!
I managed to build this one time I had that exact need:
I don’t really know much about CSS, but this has worked for me.
.Skin inputntype=text] {
border: 2px solid #525252;
border-radius: 6px;
}
There you can define the border thickness (the standard is 2px, so if you want a less tick border, you should use 1).
Also the color of the border (in hex code)
And the border radius (just change that 6 for the radius you want)
Hope this helps!
Thanks @Ricmarug, that helped! I made some changes, because I want to target both Text/Graphic Questions as the text-entry option in Multiple Choice Questions:
/* Style the text-entry box */
.Skin .InputText,
.Skin .TextEntryBox {
border: 1px solid #30B3AF !important;
border-radius: 10px !important;
}
That’s great! Happy to help :)