Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1116038

    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:

    #1116132

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.