Change size of 'Text' to the same size as 'Menu' for my footer (desktop only)

hello, i would like to change the size of my ‘Text’ for my footer so that it is the same size as the ‘Menu’ as it is currently bigger. I only need to change the size on desktop, it is fine on mobile:

here is my website, as you can see the ‘Text’ font size is bigger than the ‘Menus’

website url is www.antico-abito.com , theme is dawn

Hi @ads18922 ,
Go to section-footer.css file and add the following code :

@media(min-width:750px){
.footer-block__details-content {
   
    font-size: 1.5rem !important;
}

}

Hi @ads18922

  • You can try to follow this step
    Step 1: Go to Edit code
    Step 2: Find file base.css and add this code at the end of the file
@media (min-width: 990px) {
a.link.link--text.list-menu__item.list-menu__item--link {
    font-size: 20px !important;
}

.footer-block__heading {
        font-size: 30px !important;
    }

.footer-block.grid__item.scroll-trigger.animate--slide-in {
    font-size: 20px !important;
}

}

Result:

Best,

Liz

Hi @ads18922

Please add this code to Custom CSS in Online Store > Themes > Customize > Theme settings.

.footer-block__details-content p { font-size: 1.4rem !important; }