hello, i want to change the size of my text for my footer, for desktop only. Here is my website:
i would like it to be similar size to this:
my website is www.antico-abito.com , theme is dawn
A user wants to reduce footer text size on desktop only for their Shopify store (www.antico-abito.com) using the Dawn theme. They provided screenshots showing the current larger footer text and a reference example of the desired smaller size.
A solution was provided involving custom CSS:
font-size: 11px wrapped in a media query for screens 769px and widerThe media query ensures the styling applies to desktop devices only, leaving mobile footer text unchanged. The discussion appears resolved with a working solution provided.
hello, i want to change the size of my text for my footer, for desktop only. Here is my website:
i would like it to be similar size to this:
my website is www.antico-abito.com , theme is dawn
Hi @ads18922 ,
Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.
@media (min-width: 769px){
a.link.link--text.list-menu__item.list-menu__item--link {
font-size: 11px !important;
}
a.link.link--text.list-menu__item.list-menu__item--link {
font-size: 11px !important;
}
}