How can I edit CSS code for better mobile optimization?

My website URL: https://thesnoozy.com/

Password: 123

Hi, I would like to edit some CSS code for the following sections:

  1. I would like to stretch this image with texgt out to the end of the page, like this:

  1. This multicolumn looks good in the desktop version, but I want to space them a bit out on the mobile version:

  1. The same for this multicolumn, I’ve made the spaces good for desktop, but I don’t know how to change it only for mobile:

Hi @GeorgeRizos ,

Glad to support you today :grin: .

On issue 1, as i understand you want the section like this, right?

If I am correct, you can check out my suggestion below to fix:

Please go to Online Store > Themes > click 3 dots button > Edit code > Theme.liquid and add code above the tag on the file Theme.liquid.


Eg:

I hope you find the answer helpful. If you need further support, do not hesitate to reach out to us.

Kind & Best regards,
GemPages Support Team.

Hi @GeorgeRizos
You can try follow this path:
Themes => edit code => asset => base.css
and add this code to bottom of the file base.css
For the 1 problem:

.image-with-text {
max-width: 100%;
width: 100%;
padding: 0;
margin: 0;
}

For the 2 and 3, I didn’t see any content like your image

Hi @ExpertRookie , I’ve tried your solution and it works, but it also does this to another image with text I have, which I don’t want. How can I only change this for the image with text on the product page?

Thanks! This worked perfectly!