Created
August 4, 2020 05:48
-
-
Save Pavracer/5de52caf5cea7999a25dd7f5544da921 to your computer and use it in GitHub Desktop.
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
<script> | |
(function($) { | |
$(document).ready(function() { | |
if ($(window).width() < 980 ) { | |
$('.custom-row-4-columns .et_pb_column_3_tb_header, .custom-row-4-columns .et_pb_column_2_tb_header').insertAfter('.custom-row-4-columns #mobile_menu1 li:last-child'); | |
} | |
}); | |
})(jQuery) | |
</script> | |
<style> | |
@media (max-width: 980px) { | |
.custom-row-4-columns .et_pb_column_3_tb_header, .custom-row-4-columns .et_pb_column_2_tb_header { | |
padding-left: 0px; | |
display: flex; | |
justify-content: center; | |
margin: 0 auto | |
} | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment