ludac
January 21, 2024, 11:57am
1
Hello I want to align the Newsletter with the other Quick Menus in my Footer. I’ve already created a quick menu for this, so in my mind all I have to do is paste the code for the newsletter banner into this menu, right?
The Newsletter Banner should move from the bottom into the position of the right Quick Menu with the name “Newsletter”.
The website is https://ludac.de and the password is “a”.
Moeed
January 21, 2024, 2:58pm
2
Hey @ludac
Follow these Steps:
Go to Online Store
Edit Code
Find theme.liquid file
Add the following code in the bottom of the file above tag
RESULT:
If I managed to help you then, don’t forget to Like it and Mark it as Solution!
Best Regards,
Moeed
Hello @ludac
You can add code by following these steps
Go to Online Store → Theme → Edit code.
Open your theme.liquid file
Paste the below code before on theme.liquid
.footer__content-top {
position: relative !important;
}
@media screen and (min-width: 750px){
.footer-block--newsletter {
justify-content: flex-end !important;
position: absolute !important;
bottom: 61% !important;
right: 73px !important;
}
}