How can I align the content to the left on mobile?

Any idea how to align the content on a slider to the left on MOBILE?

I can tell it to align Mobile to left but all is does is left-justify the text. I would like to move the text and button off the image to the left or right.

Thank you!

  1. Look for the code that generates the slider content, including the text and button. It will likely use HTML and CSS classes to style and position the elements.

  2. Add the following CSS code to align the content to the left on mobile and move it off the image:

@media (max-width: 767px) {
  .slider-content {
    text-align: left;
    margin-left: -50%; /* Adjust this value to move the content off the image */
  }
}

Hello @nlokcoffee

Could you please provide your store URL and, if it is password protected, please share the password so I can review it and provide a solution?

Thank you for the help, finally got it working.