All things Shopify and commerce
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
my website is duonova.ro
How can I rearrange these links to the center?
Thanks
Hi @Emilia9
Try this one.
@media screen and (min-width: 750px) {
.footer-block.grid__item.footer-block--menu {
width: 25%;
}
.footer-block.grid__item.footer-block--menu.scroll-trigger.animate--slide-in {
margin: unset;
}
div.footer__blocks-wrapper.grid.grid--1-col.grid--2-col > div:nth-child(1) {
margin-top: 60px;
}
.footer-block.grid__item.footer-block--menu {
display: flex;
flex-direction: column;
justify-content: center;
}
div.footer__blocks-wrapper.grid > div:nth-child(3) > ul > li > a {
justify-content: right;
width: 100%;
text-align: right;
}
div.footer__blocks-wrapper > div:nth-child(3) > h2 {
text-align: right;
justify-content: flex-end;
}
.footer-block__details-content > li:not(:last-child) {
margin-right: 0rem !important;
}
.footer-block__brand-info .rte {
text-align: center;
}
div.footer__blocks-wrapper.grid > div:nth-child(1) > h2 {
justify-content:left;
}
}
@media only screen and (min-width: 1550px){
div.footer__blocks-wrapper.grid.grid--1-col.grid--2-col > div:nth-child(1) {
margin-top: 80px;
}
}
@media only screen and (min-width: 1249px){
.footer-block.grid__item.footer-block--menu {
width: 33%;
}
}
Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better!