If this is the code, I’m none the wiser:
?>
<div class="span4 social-block pull-left">
<?php if ( 0 != tc__f( '__get_option', 'tc_social_in_footer') ) : ?>
<?php tc__f( 'tip' , __FUNCTION__ , __CLASS__, __FILE__ ); ?>
<?php echo tc__f( '__get_socials' ) ?>
<?php endif; ?>
</div>
<?php
and
?>
<?php ob_start() ?>
<div class="span4 backtop">
<?php tc__f( 'tip' , __FUNCTION__ , __CLASS__, __FILE__ ); ?>
<p class="pull-right">
<a class="back-to-top" href="#"><?php _e( 'Back to top' , 'customizr' ) ?></a>
</p>
If I am reading this correctly, the social icons in the footer have a “pull-left” and yet they aren’t left-aligned because they float centrally in their span.
And the back-to-top is assigned a “pull-right” which does align to the right and doesn’t float like the social icons do.
Confusing.