How i can move the payment icons from centre to right corner in Dawn theme.
Hello There,
Please share your store URL and password.
So that I will check and let you know the exact solution here.
Password: abarcyweb70
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find layout >section-footer.css and paste this at the bottom of the file:
.footer__localization:empty+.footer__column--info {
align-items: end;
}
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > section-footer.css and paste this at the bottom of the file:
.footer__localization:empty+.footer__column--info {
align-items: flex-end;
}
Hallo @jehan70
You can add code by following these steps to change
- Go to Online Store β Theme β Edit code > assets > base.css
paste below code at bottom(base.css)
**.footer__localization:empty+.footer__column--info {**
**align-items: end !important;**
**}**
If you require any further information, feel free to contact me.
Best regards,
Thanks it worked, but the container height remains the same.
Hello @jehan70
Itβs GemPages support team and glad to support you today.
I would like to give you a solution to support you.
-
Go to Online Store β Theme β Edit code.
-
Open assets/section-footer.css file
-
Paste add the code at the end of this file:
@media screen and (min-width: 750px){
.footer__content-bottom{
max-width: var(--page-width);
margin: 0 auto;
display: flex;
}
.footer__content-bottom > .footer__content-bottom-wrapper{
width: 50%;
}
.footer__content-bottom > .footer__content-bottom-wrapper:first-child{
order: 2;
}
.footer__column--info{
align-items: end !important;
}
}
@media screen and (max-width: 749px){
.footer__column--info {
align-items: center !important;
}
}
Hope my solution can work and support you!
Kind & Best regards!
GemPages Support Team.
It worked, but the container height remains the same.
Hallo @jehan70
You can add code by following these steps to change
- Go to Online Store β Theme β Edit code > assets > base.css
paste below code at bottom(base.css)
**@media only screen and (max-width: 749****px) ****{**
**.footer__content-bottom {**
**display: flex;**
**}**
**.footer__content-bottom-wrapper.page-width:first-child {**
**order: 2;**
**}**
**}**
If you require any further information, feel free to contact me.
Best regards,
