• Resolved luisthegeek

    (@luisthegeek)


    I just installed the theme and so far I am loving it, just a few tweaks left. How do I center the footer nav menu and the copyright info in the footer on 2 lines?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Theme Author WEN Themes

    (@wenthemes)

    Hello,
    Thanks for using our theme. You can customize theme using child theme. In your theme’s functions.php put following code to center footer content. https://gist.github.com/wenthemes/92ed3b8c0e5740002691

    Thread Starter luisthegeek

    (@luisthegeek)

    Created a child theme in a zipped folder named wen-corporate-child.zip.

    Included a style.css page with the following:

    /*
     Theme Name:   The Sumter Wire
     Theme URI:    https://wenthemes.com/item/wordpress-themes/wen-corporate/
     Description:  Customized Theme for The Sumter Wire
     Author:       WEN Themes
     Author URI:   https://wenthemes.com
     Template:     wen-corporate
     Version:      1.0.0
     License:      GNU General Public License v2 or later
     License URI:  https://www.gnu.org/licenses/gpl-2.0.html
     Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
     Text Domain:
    */
    
    @import url(https://www.sumterwire.com/wp-content/themes/wen-corporate/style.css

    as well as a functions.php page with the code you linked to me. and all i get is this…

    https://gyazo.com/27830d1a72b152c5561bfca30392ce03

    Thread Starter luisthegeek

    (@luisthegeek)

    nvm…i found the error in my ways. standard syntax error. lol

    Is there a way to simply do this by adding custom CSS rather than dealing with php? I tried the following CSS but it only moved it slightly over to the right.

    #footer-navigation,
    #powered-by,
    .copyright{
    text-align: center;
    }

    Theme Author WEN Themes

    (@wenthemes)

    If you have no content on the rightmost column of the footer, means just
    copyright text on the left then you can use the following css trick.

    .footer-left.col-sm-6 {
      width: 100%;
    }
    .footer-left .copyright {
      text-align: center;
    }

    It can be just a temporary fix, however solution on good approach had already been discussed above.

    That worked for the copyright, thank you! But not for my footer menu which is still on the left. What is the CSS for that bit?

    I have the social menu in the footer ??

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How to center Footer menu and copuright info’ is closed to new replies.