Hi there, im trying to implement new changes on footer from dawn theme 4.0. I used grid layout to modify footer, and i want to change that language selector to fill 50% of last 4 column, so in the 4 column should be 2 blocks 50% each one.
something like :
grid-column: 4 / 5;
grid-row: 1 / 2;
Is anybody able to guide me, i tried out some things but no lucky at the moment, i will show you with an image, what im talking about..
Hi @SHIBdev ,
Please share your store URL and if your store is password protected then please provide password too.
So that we can help you.
Thank you.
1 Like
@AvadaCommerce you got pm! Thanks in advance!!
Hi @SHIBdev
You can follow the instruction below:
- Go to Online Store->Theme->Edit code
- Asset->/section-footer.css->paste below code at the bottom of the file:
@media (min-width: 750px) {
.footer__blocks-wrapper {
position: relative
}
.footer-block:last-child {
position: absolute;
right: 0;
top: 100px;
}
}
If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.
1 Like
@AvadaCommerce Thanks for your help ! it works well, i made a little change on top, i added a calc() function, but yes definetly works!
PD: can you check this post ( https://community.shopify.com/topic/1534829 ) it’s related with this post, the issue is secondary language is not showing as well. Thanks!