footer- how to change font size of link list title? (using Palo Alto theme)

Currently my footer menu show the list title font size smaller than the list font size of the links. Would like the font to be the same size as the newsletter subscribe title. How do I change the font size on the palo alto theme? (see image below)

The heading font size in Palo Alto theme is using the same font as all other H5 elements on the page, so a work around would be to include the new size under .footer-title__button which is located in theme.css. Please add font-size: 1.5rem; so your code looks the same as below.

.footer-title__button {
  text-align: left;
  -webkit-appearance: none;
  font-size: 1.5rem;
}

Hope this helps

Simon

Hi @lorenap ,

Please go to Actions > Edit code > Assets > theme.css file and paste this at the bottom of the file:

.footer-title__button {
        --adjust-heading: calc(var(--FONT-ADJUST-HEADING)* 1.6);
        font-size: calc(1.1rem* var(--adjust-heading));
}

Perfect! It worked! Thank you so much!

Hi @lorenap ,

You’re welcome and happy to help you :blush: