What's your biggest current challenge? Have your say in Community Polls along the right column.

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

Solved

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

lorenap
Visitor
2 1 0

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)

Screenshot 2024-11-28 at 3.10.36 AM.png

Accepted Solution (1)
lorenap
Visitor
2 1 0

This is an accepted solution.

Perfect! It worked! Thank you so much!

View solution in original post

Replies 4 (4)

BlackCro
Shopify Partner
103 19 16

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

BlackCro.co.uk

CRO & Development Agency



Better Forms - Get a better contact form today!

namphan
Shopify Partner
2056 271 299

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));
}

 

Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com
lorenap
Visitor
2 1 0

This is an accepted solution.

Perfect! It worked! Thank you so much!

namphan
Shopify Partner
2056 271 299

Hi @lorenap,

You're welcome and happy to help you 😊

Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com