Hi guys!
I've read
this post
But if I go in templates/purity_iii/tpls/blocks/foother.php, code is different.
If I change <div class="container hidden-xs"> in <div class="container>, in this way
(old)
<?php if ($this->checkSpotlight('footer-sl', 'footer-1, footer-2, footer-3, footer-4, footer-5, footer-6')) : ?>
<!-- FOOTER SPOTLIGHT -->
<div class="container hidden-xs">
<?php $this->spotlight('footer-sl', 'footer-1, footer-2, footer-3, footer-4, footer-5, footer-6') ?>
</div>
<!-- //FOOTER SPOTLIGHT -->
<?php endif ?>
(new)
<?php if ($this->checkSpotlight('footer-sl', 'footer-1, footer-2, footer-3, footer-4, footer-5, footer-6')) : ?>
<!-- FOOTER SPOTLIGHT -->
<div class="container>
<?php $this->spotlight('footer-sl', 'footer-1, footer-2, footer-3, footer-4, footer-5, footer-6') ?>
</div>
<!-- //FOOTER SPOTLIGHT -->
<?php endif ?>
Footer reappers, but has not the same style, color and alignment!
Please help me, thanks in advance.