Okay
  Public Ticket #2548154
Centered content footer
Closed

Comments

  •  3
    Lucie_Hanot16 started the conversation

    Hi again,

    My client would like the content of the first column and second to be centered in the middle of the footer. 

    Currently this is the CSS : 

    li.wpml-ls-item .sub-menu {     width: 47px;     padding: 0; }   li.wpml-ls-item .sub-menu li {     border-bottom: 1px solid grey; }   li.wpml-ls-item .sub-menu img {     margin: 7px; }

    @media only screen and (min-width: 1000px) {     #footer-outer .row {         padding: 15px 0 10px 0 !important;     }

        #footer-outer #copyright[data-layout="centered"] .col .social li {         margin-top: 10px !important;     }

        #footer-outer .widget {         margin-bottom: 5px !important;     } }

    Can you help me to solve this problem ? 

    Also, how can I make it responsive with mobile ?

    Thanks a lot,

    Lucie

  •  2,965
    Andrew replied

    Hi Lucie,

    You site is behind under maintenance plugin. Could you allow us to check so that we see possible css.

    Thanks.

  •   Lucie_Hanot16 replied privately
  •  2,965
    Andrew replied

    Hi Lucie,

    Add the following custom css:

    @media only screen and (min-width: 1000px) {
        #footer-outer .col:first-child {
        margin-top: 20vh !important;
    }
    #footer-outer .col:nth-child(2) {
        margin-top: 20vh !important;
    }
    }
    

    Thanks.