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
Hey Freek,
Could you post a link to the site in question so that we can take a closer look please?
Best regards,
Rikard
Sure. See Private content.
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
It worked. THX for the great support!
Freek
Hi,
Glad we could help :)
Best regards,
Nikko