Created
September 25, 2023 05:05
-
-
Save akther80/007878c6122d828de1a5198e771d1d93 to your computer and use it in GitHub Desktop.
MyTravel - Move Single Activity & Tour format product sidebar to the top 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( 'mytravel_single_activity', 'mytravel_single_product_sidebar', 17 ); | |
add_action( 'mytravel_single_tour', 'mytravel_single_product_sidebar', 21 ); |
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
@media(max-width: 991px) { | |
.single-product-v1 .col-lg-8.col-xl-9 + .col-lg-4.col-xl-3 { | |
display: none; | |
} | |
} | |
@media(min-width: 992px) { | |
.single-product-v1 .col-lg-8.col-xl-9 .border.border-color-7 { | |
display: none; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment