Jump to content

Social Network on the footer near "My account"


Recommended Posts

Yes i changed pull-right to pull-left and i changed also css width of block social network to:

.footer-container #footer #social_block {
    float: left;
    padding: 22px 15px 0;
    width: 14%;
/* it was width: 50% */
}

But nothing, i have not link to this because i'm working on local then i will uploaded to the server, my web site is : http://panier-marrakech.com

Edited by soufiane011 (see edit history)
Link to comment
Share on other sites

1) You need load the modules in correct orden  the social  is load after contac info you can put col-1 but is not load in the correct position

 

 

2) If you see the html  have col-2 col-2 col-4 col-4 and after the social

Link to comment
Share on other sites

I found solution :)
1) We need to move bloc social network aftter bloc my account from administration
Modules-> Positions then look for displayFooter put the social after Block "MY ACCOUNTFOOTER"
2) Remove pull-right from block social network (blocksocial.tpl)
3) Change width from 50% to 14% of module from globla.css line7133

.footer-container #footer #social_block {
    float: left;
    padding: 22px 15px 0;
    width: 14%;
}

4) Remove or comment last div in blocksocial.tpl
Change
<div class="clearfix"></div>
To
{*<div class="clearfix"></div>*}

5) Move H4 from last section in blocksocial.tpl to the top before ul

<h4>{l s='Follow us' mod='blocksocial'}</h4>

Like this:

----------Before Line 86--------------

    </ul>
    <h4>{l s='Follow us' mod='blocksocial'}</h4>
</section>
{*<div class="clearfix"></div>*}

----------After Line 26----------------

<section id="social_block" class="footer-block col-xs-12 col-sm-2">
<h4>{l s='Follow us' mod='blocksocial'}</h4>
    <ul>

------------------------------------------

The result post-773158-0-24747300-1426158868_thumb.png

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...