Salient - Responsive Multi-Purpose Theme

Center Copyright Text In Footer


Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

#footer-outer div#copyright .col.span_5 {
    left: 50%;
}

#footer-outer .div#copyright col.span_7 {
    float: right;
}

#footer-outer div#copyright .col {
    width: auto !important;
}

#footer-outer #copyright p {
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

Thanks