Hey guys how do i make my sign up and save icon go to the center in between quick links and about us

Hi @brokenbannaba

Can you kindly share your store link (with the password, if any) with us? We will check it and suggest you a solution.

sublimesnkrs.com

baurti

Hi,

It need some code customization from admin side .

You can hire me.

Thank you.

@BSS-Commerce

Hi @brokenbannaba

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

Hi @brokenbannaba

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.

It works but, it looks kinda weird is there any way to make it the about us section go further to the right.

Hi @brokenbannaba

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.

is it possible to make the email sign up move to the left a bit more ?

Hi @brokenbannaba

You can change this number to adjust the position of the email sign-up as you want:

view - 2023-01-11T110424.206.png