Created
June 28, 2019 05:51
-
-
Save yousufansa/c8831844e7d77a8e9da1690f6ad21913 to your computer and use it in GitHub Desktop.
Jobhunt - Move Apply Job Button Bellow Description in Mobile View
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'single_job_listing', 'jobhunt_single_job_listing_application', 25 ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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