Skip to content

Instantly share code, notes, and snippets.

@yousufansa
Created June 28, 2019 05:51
Show Gist options
  • Save yousufansa/c8831844e7d77a8e9da1690f6ad21913 to your computer and use it in GitHub Desktop.
Save yousufansa/c8831844e7d77a8e9da1690f6ad21913 to your computer and use it in GitHub Desktop.
Jobhunt - Move Apply Job Button Bellow Description in Mobile View
add_action( 'single_job_listing', 'jobhunt_single_job_listing_application', 25 );
.single-job-listing__content-area .job_application {
padding-bottom: 30px;
border-bottom: 1px solid #edeff7;
}
@media (min-width: 768.1px) {
.single-job-listing__content-area .job_application {
display: none;
}
}
@media (max-width: 768px) {
.single-job-listing__sidebar-area .job_application {
display: none;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment