Hello, for my footer caption (2025, Antico Abito) I would like to make it slightly bigger as well as moving it above the payment icons:
my store is www.antico-abito.com , theme is dawn
Hello, for my footer caption (2025, Antico Abito) I would like to make it slightly bigger as well as moving it above the payment icons:
my store is www.antico-abito.com , theme is dawn
hey dear follow these steps
Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->before the ----->
before the body ----->
if this code work please do not forget to like and mark it solution
@media screen and (min-width: 768px) {
.footer__content-bottom.scroll-trigger.animate--slide-in {
display: flex !important;
flex-direction: column-reverse !important;
}
footer .copyright__content {
font-size: 20px !important;
}
}
@media screen and (max-width: 767px) {
.footer__content-bottom.scroll-trigger.animate--slide-in {
display: flex !important;
flex-direction: column-reverse !important;
}
footer .copyright__content {
font-size: 20px !important;
}
}
Hello @ads18922
From your Shopify Admin, navigate to Online Store > Themes > Edit Code
In the Assets folder, open base.css and add your CSS code at the end
.footer__content-bottom.scroll-trigger.animate--slide-in {
display: flex;
flex-direction: column-reverse;
align-items: center;
}
footer .copyright__content {
font-size: 20px;
font-weight: 500;
margin-bottom: 10px;
text-align: center;
}
Hello @ads18922
Thank you for confirming. Iām glad to hear that the solution I provided is working perfectly. Kindly like and accept the solution so it may help others as well.
i already accepted the solution