corp41
October 1, 2022, 10:15pm
1
Hello,
Could someone assist me with this, I’m trying to add the email signup to the bottom left of my footer and the navigation to the right. I’ve tried so many different things. Anyone have a solution? I’m using the Streamline Theme.
I can give you access if you need to jump into the coding, also the password to the site is welcome4123
Thanks!
Uhrick
October 2, 2022, 2:37am
2
hello, Corp41
you gave the password to the site but didn’t give the site link
corp41
October 2, 2022, 2:38am
3
Uhrick
October 2, 2022, 3:02am
4
hey, I fixed this in a way, but check mobile to see if it looks ok
go to online store > themes > actions > edit code
on the theme.css file, at the end, add this:
.site-footer {
display: flex;
justify-content: space-between;
position: relative;
padding-top: 20px;
}
.site-footer .page-width {
margin: 0;
}
.site-footer__copyright {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 5px;
}
corp41
October 2, 2022, 3:06am
5
Definitely works on the computer, but on mobile its squeezed together
Uhrick
October 2, 2022, 3:08am
6
can you do a quick sketch of how you want it to look on mobile? I can do an extra code for that
corp41
October 2, 2022, 3:11am
7
Sure, so on mobile I was trying to keep it centered, I took a screenshot of the mobile without the new code you gave me…
Uhrick
October 2, 2022, 3:25am
8
replace the code that I sent previously with
@media (min-width: 768px) {
.site-footer {
display: flex;
justify-content: space-between;
position: relative;
padding-top: 20px;
}
.site-footer .page-width {
margin: 0;
}
.site-footer__copyright {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 5px;
}
}
corp41
October 2, 2022, 3:34am
9
That worked perfectly. Thank you so much for that!