8replies
-
Hi Rafael,
If you already have a Formula field on your form that modifies some CSS styles you can just add this line to it.
.choice-menu-item:first-child{display:none;}
If you don't, you need to add a Formula field with this code in it.
html(" <style> .choice-menu-item:first-child{display:none;} </style> ")
This will leave a space at the bottom of the menu because the other menu items have just shifted up.