Hello,
I need your help with moving the text I circled in the picture to the left (until the line).
Here is my website link: https://wowberrybites.myshopify.com/
Thanks for your help in advance!
Hello,
I need your help with moving the text I circled in the picture to the left (until the line).
Here is my website link: https://wowberrybites.myshopify.com/
Thanks for your help in advance!
@winnado11 add this css on theme.min.css file under asset folder
.footer__content.footer__content--one-third div:nth-child(3) {
margin-left: -150px;
}
Hi @winnado11
In this case you can try to add this custom css code into the bottom of the file theme.min.css
.footer__content > div:nth-child(3){
min-width: 500px;
}
Hello @winnado11
To move the text to left, add this code to your theme.css file.
Navigate to online store >> Click edit theme code.
Now find theme.css and paste the following code.
@media (min-width: 46.85em){
.footer__content–one-third div:nth-child(3)
{
min-width: 47rem !important;
}
}
If you want to adjust the margin then change the value of rem (like 1rem, 2.5rem, 3rem, etc).
I hope it will be helpful for you.
Thanks
Did it solve your issue?
@eFoli-Trapa Thanks so much. It works
You are welcome. I am glad that it helps you