Skip to content

Instantly share code, notes, and snippets.

@Pavracer
Created August 4, 2020 05:48
Show Gist options
  • Save Pavracer/5de52caf5cea7999a25dd7f5544da921 to your computer and use it in GitHub Desktop.
Save Pavracer/5de52caf5cea7999a25dd7f5544da921 to your computer and use it in GitHub Desktop.
<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