pleade provide a code to move “contact, client services, legal) all the way to the right, down as far as possible and in a smaller font size.
thank you!
Request to move footer links (“Contact, Client Services, Legal”) to the far right, positioned lower, and in a smaller font on a Shopify store. The store URL was provided; images/screenshots illustrated the current and resulting layout.
Solution provided via Shopify Admin: Online Store > Theme > Customize > Theme Settings > Custom CSS. A CSS (Cascading Style Sheets) snippet was shared to: right-align the footer details list, reduce item font size to 10px, remove right margin on the containing block, and adjust footer padding to position the section lower.
Key CSS effects:
Outcome: The requester confirmed the changes achieved the desired layout. Status: resolved; no further action requested.
pleade provide a code to move “contact, client services, legal) all the way to the right, down as far as possible and in a smaller font size.
thank you!
https://righteousofficial.com
right5785*
Hi @ErhatRO
To complete your requests, please follow these steps:
ul.footer-block__details-content {
text-align: right !important;
}
.footer-block.grid__item:has(ul.footer-block__details-content) {
margin-right: 0 !important;
}
.footer__content-top.page-width {
padding-bottom: 0 !important;
padding-top: 100px !important;
}
ul.footer-block__details-content * {
font-size: 10px !important;
}
Here is the result: https://prnt.sc/WH-omCDsxjrd
I hope this helps,
Best,
Daisy
This is perfect @DaisyVo . Thank you!