Skip to main content

Mobile Alignment: Self Updating Footer Date

Comments

3 comments

  • Ariel H.

    Hi Ray,

    You can use the following CSS to center the copyright text on mobile devices:


    /* Center the copyright text on mobile */
    @media (max-width: 767px) {
        #copyright-year {
            display: inline;
        }

        p {
            text-align: center !important;
        }
    }


    You can add this CSS in Brizy Cloud by going to:

    CMS -> Project Settings -> Code -> Custom CSS

    After adding the CSS, save and publish the project for the changes to take effect.
    Screencast - https://youtu.be/TF7jn3dBe8g

    0
  • Ray H

    Aha! Brilliant!

    Thank you.

    Also, an alternative placement in the WordPress menu: Appearance > Customise > Additional CSS

    0
  • Ariel H.

    Hi Ray,

    You're welcome! Yes, that also works perfectly on WordPress. 

    0

Please sign in to leave a comment.