Hey guys how do i make my sign up and save icon go to the center in between quick links and about us
Can you kindly share your store link (with the password, if any) with us? We will check it and suggest you a solution.
baurti
Hi,
It need some code customization from admin side .
You can hire me.
Thank you.
Please go to Online Store > Themes > Edit Code, find the global.js file in the assets folder, and add the following code to the bottom:
const quickLinksDiv = document.querySelector('.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet .footer-block.grid__item.footer-block--menu')
const subscribeEmailDiv = document.querySelector('.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet .footer-block--newsletter')
quickLinksDiv.insertAdjacentElement('afterend',subscribeEmailDiv)
If nothing changes, you can try with other js files in the assets folder.
I hope that it will work for you.
dosen’t work bro
Please try to replace the above code with this code:
const quickLinksDiv = document.querySelector('.footer__blocks-wrapper.grid.grid--1-col.grid--2-col.grid--4-col-tablet .footer-block.grid__item.footer-block--menu')
const subscribeEmailDiv = document.querySelector('.footer-block--newsletter')
quickLinksDiv.insertAdjacentElement('afterend',subscribeEmailDiv)
subscribeEmailDiv.style.display = 'block'
I hope that it can help you.
Please add this line of code to the global.js file:
document.querySelector('.footer-block--newsletter').style.marginRight = '10rem';
I hope that it will work for you.
You can change this number to adjust the position of the email sign-up as you want:



