Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How to hide option in drop down menu?

I’m trying to hide the "Select Value" option in the drop down menu of a plugin I have for my wordpress, I’ve tried the following code:

div.calc-drop-down-box.calc_dropDown_field_id_0 {
    
            visibility: hidden !important;

}

But this doesn’t work. What am I doing wrong?

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

Try this:

.calc-drop-down.ccb-appearance-field.ccb-field option:first-child {
  display: none;
}

It gets the first child of type ‘option’ and hides it from the dropdown
https://jsfiddle.net/shn5dcmu/1/

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading