Is it possible to change the functionality of a dropdown selector in design studio 1.6 sp2.
I have been asked to make a dropdown selector wrap the text if it does not fit within the specified width. I have written the below custom CSS:
.MyDropdownCategory
{
word-break: break-all;
white-space: normal;
}
This doesn't have any impact on the dropdown, but I can write custom CSS to change the background colour of the selector etc.
Any advise would be greatly appreciated.