Centering Text in Footer

Hi,

I asked you about a month ago if there was any chance that I could liaise with you away from this forum. You have not responded.

Could you also please tell me how I can get the copyright info to display in the centre of the footer and not the right hand side?

I also to have links in my footer to certain pages but it seems that i have to have all my page links in the footer. I only want a few various pages there.

Thanks

Footer menu works just like any other WordPress Custom menu and you can add any item there. Just create a new menu specially for footer area. here you can find more about custom menu and how it works. Then you can add this menu to footer at the very bottom or as Custom Menu Widget.

Since there are two columns and both are 50% in width then to center copyright text we have to hide footer left side menu I mentioned above. If you want to use both menu and copyrights then there will be need for more tweaks.

nav.col-md-6 {
    display: none;
}
.copyright.col-md-6 {
    text-align: center;
    width: 100%;
    margin-top: 10px;
}