Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2881356
Set up footer
Closed

Comments

  • truongdaoanhthu started the conversation

    Hi there,

    How can I align all elements center? 

    Thanks

  •  2,492
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    @media only screen and (max-width: 767px) {
        .footer-widget-wrapper,
        .footer-widget-wrapper .widget-social.pc_alignleft,
        .footer-widget-wrapper .widget .widget-title {
            text-align: center;
        }
    }

    Regards,
    PenciDesign.



  • truongdaoanhthu replied

    Hi there, 

    I did following what you guided, but it didn't change anything. I want everything is center. What should I do next?

    Thanks

  •  2,492
    PenciDesign replied

    Hi,

    Please copy & paste to Customize → Custom, click Publish, clear all your cache then check again.

    Here is the screenshot of your site when this code applies to your site:

    image.png

    Regards,
    PenciDesign.



  • truongdaoanhthu replied

    Hi there,

    Thanks for your supporting. 

    The mobile mode has changed like what I want. But the tablet mode hasn't (Image attached). And I don't know why. :((


  •  2,492
    PenciDesign replied

    Hi,

    If you want to show it on the tablet, please modify the code like this:

    @media only screen and (max-width: 959px) {
        .footer-widget-wrapper,
        .footer-widget-wrapper .widget-social.pc_alignleft,
        .footer-widget-wrapper .widget .widget-title {
            text-align: center;
        }
    }

    Regards,
    PenciDesign.