How can I shift my webpage text to the left?

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?

  • If yes, Like & Mark As Solution to help the community
  • If not, let me know. also share a screenshot of the code that you added.
3 Likes

@eFoli-Trapa Thanks so much. It works

@Winnado11

You are welcome. I am glad that it helps you