Hi
I would like to change position of PHONE INFO / PEDIR PRESUPUESTO (secondary menu).
PHONE INFO – Fist
PEDIR PRESUPUESTO (secondary menu) – below.
same as attache file.
https://www.dropbox.com/s/0jovgxes123v0gx/menu.jpg?dl=0
This is the website:
Hey kikosanchezestudio,
Try adding this code to the end of your functions.php file in Appearance > Editor:
function flip_script(){
?>
<script>
jQuery(window).load(function(){
jQuery( '#header_meta' ).each(function() {
jQuery( this ).find( 'div.phone-info' ).insertBefore( jQuery(this).find('nav.sub_menu') );
});
});
</script>
<?php
}
add_action('wp_footer', 'flip_script');
Best regards,
Mike