Hi, how can I put the wpml in the top bar, next to the facebook icon?
Grazie 

I tried with this, but it does not work:
Please setup a child theme1 first and then, create file _topbar.php in wp-content/themes/x-child/framework/views/global/ then copy the code below into that file.
<?php // ============================================================================= // VIEWS/GLOBAL/_TOPBAR.PHP // ----------------------------------------------------------------------------- // Includes topbar output. // ============================================================================= ?> <?php if ( x_get_option( 'x_topbar_display' ) == '1' ) : ?><?php echo x_get_option( 'x_topbar_content' ); ?>
<?php endif; ?> <?php x_social_global(); ?> <?php do_action('icl_language_selector'); ?>Then try adding the following CSS rule into your Theme Options > Global CSS area.
span.language-switcher {
float: right;
}