I'm using JQUERY and CSS to edit a websites default content, however I have come across the following code:
<div id="SortOptions">
Sort by:
<select id="SortMain" class="improvedcatalogdropdown">
<option value="0" selected="selected">Relevance</option>
</select>
</div>
I need to remove the text Sort By:
, but keep the select options.
I have tried this using CSS, however it removes both the text and the select options.
#SortOptions {
display: none;
}