Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #704489

    Hi,

    If i use an extra info field and social media icons in the header both on left side the order is (from left to right) social media icons and than extra info.
    I would like to change the order to first the extra information and than the social media icons. But they must both be on the left side of the screen because the secundair menu must be on the right side of the screen.
    Is it possible?
    THX Freek

    #704704

    Hey Freek,

    Could you post a link to the site in question so that we can take a closer look please?

    Best regards,
    Rikard

    #704716

    Sure. See Private content.

    #705989

    Hi,

    Try to add this code in functions.php located in Appearance > Editor or via ftp/cpanel:

    function switch_social_extra(){
    ?>
      <script>
        jQuery(window).load(function(){
          	var $curr = jQuery('#header .phone-info');
          	$curr.prependTo( $curr.parent() );
    
        });
      </script>
    <?php
    }
    add_action('wp_footer', 'switch_social_extra');

    Let us know if it works :)

    Best regards,
    Nikko

    #706009

    It worked. THX for the great support!
    Freek

    #706071

    Hi,

    Glad we could help :)

    Best regards,
    Nikko

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Change order extra info and social icon’ is closed to new replies.