Hide search form fields on mobile

Hello, first of all bravo, the more I discover hivepress and rentalhive (theme that I use for a marketplace type airbnb) the more I find it at the top … My question: is it possible to have a different search bar for pc mode and for mobile mode: basically I would like to have the fields: location, dates and categories on PC and have only the location field on mobile… Thanks in advance

Please try this CSS snippet

@media screen and (max-width: 47.99em){
	.hp-form--listing-search .hp-form__field:not(.hp-form__field--location){
		display: none;
	}
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.