I'm trying to find a CSS code to shorten the width of a Drop-down field for a business process form in Laserfiche Cloud... and, this code is not working for me?
#qN select {
width: 300px !important;
}
This code is working well for Single Line field:
#qN input {
width: 300px !important;
}
and, this code is working well for Mult Line field:
#qN textarea {
width: 300px !important;
}
Any ideas? N represents my specific Field ID. I'm a beginner and I don't understand how to make CSS Classes?
Thanks!