With Faceted Browse, I am attempting to hide some of the sort values in two different ways: 1) Under column configuration, checking the “Exclude sort by” box and 2) in the CSS editor using the code below. Hiding the values works on desktop browsers, but on mobile devices, “Created, “Resource class,” and “Title” remain visible. (Title remains visible on desktop browsers when using the column configuration check box, but CSS hides it). Any advice on how to hide those sort options from mobile browsers? Thank you!
/* Hide “Created” from sort options */
form.sorting select:first-of-type option[value=“created”]{
display: none;
}
/* Hide “Resource Class” from sort options */
form.sorting select:first-of-type option[value=“resource_class_label”]{
display: none;
}
/* Hide “Title(Link to Resource)” from sort options */
form.sorting select:first-of-type option[value=“title”]{
display: none;
}