Site logo

[Resolved] Center align footer widget 1

Home Forums Support [Resolved] Center align footer widget 1

Home Forums Support Center align footer widget 1

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #128787
    Nicholas

    Dear Tom,

    first let me thank for you an awesome theme that has helped me to learn how WordPress works! I am having a little trouble with my social icons. I have dropped them into Footer Widget 1, but currently they’re sitting over to the left of the footer. Is there a way I can have this center-aligned?

    My website is http://www.nickblackford.com

    Many thanks!

    #128788
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Does the plugin/widget you’re using have an alignment setting?

    If not, CSS like this may work:

    .social-icons-widget ul {
          text-align: center;
    }
    .social-icons-widget ul li {
          float: none;
          display: inline-block;
    }

    Adding CSS: https://generatepress.com/knowledgebase/adding-css/

    #128875
    Marko

    Hm. it does’nt work for me.

    .footer-widget-1 ul {
    text-align: center;
    }
    .footer-widget-1 ul li {
    float: none;
    display: inline-block;
    }

    Could you please check? url: http://dev.webseite-online.de/

    #128944
    Tom
    Lead Developer
    Lead Developer

    Try this instead:

    .footer-widget-1 ul {
          text-align: center;
    }
    .footer-widgets .widget_nav_menu li {
          float: none;
          display: inline-block;
    }
    #129160
    Marko

    Hi Tom.

    This code works.
    .footer-widget-1 ul {
    text-align: center;
    }
    .site.footer-widgets .widget_nav_menu li {
    float: none;
    display: inline-block;
    }

    Thank you for your support.
    Marko

    #129180
    Tom
    Lead Developer
    Lead Developer

    No problem! Happy to help 🙂

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.