Skip to content

Instantly share code, notes, and snippets.

@rali14
Created June 2, 2015 01:46
Show Gist options
  • Save rali14/8936acf9b101835f2b46 to your computer and use it in GitHub Desktop.
Save rali14/8936acf9b101835f2b46 to your computer and use it in GitHub Desktop.
Remove the Category field and display only the Location Field and Keywords Field on the Listify Theme.
.template-home .homepage-cover:not(.has-map) .update_results {
width: 100%;
}
.search_jobs > div.search_categories {
display: none;
}
@media (min-width:320px){
.search_jobs > div.search_location {
width: 100% !important;
}
.search_jobs > div.search_keywords {
width: 100% !important;
}
.template-home .homepage-cover.has-map .search_jobs, .template-home .listify_widget_search_listings .search_jobs {
width: 100% !important;
}
}
@media (min-width: 992px) {
.search_jobs > div.search_location {
width: 47% !important;
}
.search_jobs > div.search_keywords {
width: 47% !important;
}
.template-home .homepage-cover.has-map .search_jobs, .template-home .listify_widget_search_listings .search_jobs {
width: 70% !important;
}
.template-home .homepage-cover:not(.has-map) .update_results {
width: 30%;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment