Okay
  Public Ticket #3049734
How do I make the footer copyright font smaller
Closed

Comments

  • treelady started the conversation

    What CSS do I need to add to change the size of the copyright text that appears at the bottom of every page?

    '© 2022 *treebetty LLC ::  Terms of Use :  Privacy Policy'

    I'd like to make it smaller. Is it possible to have a different font size for desktop, tablet and mobile sizes?

    Thank you.

  •  869
    Neuron replied

    Hi,

    Can you please add the following code at Appearance > Customize > Additional CSS?

    /* Desktop */
    .l-primary-footer__copyright__text .footer-text {
        font-size: 20px;
    }
    /* Tablet */
    @media (max-width: 1279px) {
        .l-primary-footer__copyright__text .footer-text {
            font-size: 16px;
        }
    }
    /* Mobile*/
    @media (max-width: 720px) {
        .l-primary-footer__copyright__text .footer-text {
            font-size: 13px;
        }
    }

    Feel free to ask for anything you need.

    Kind Regards


  •   treelady replied privately
  •   treelady replied privately
  •  869
    Neuron replied

    Hi,

    I am very sorry for the late reply, we were not working on the weekend.

    Can you please provide me with your wp-admin, I will have a quick look to see what's going on.

    Feel free to ask for anything you need.

    Kind Regards