Collection text - How can I align differently for mobile and web?

Collection text - How can I align differently for mobile and web?

ellacoker
Shopify Partner
287 1 74

Hello,

 

I would like to align my collection text to the left in desktop version and centre it for the mobile version. Please see photos attached... I am talking about the text "Masks" in this case. On another note - if someone is able to help me line up the margins in desktop version that would be much appreciated. I have got my page settings to full width but for some reason the product grid is only taking about 60% of the page for products.

Screenshot 2025-01-22 at 20.49.35.pngScreenshot 2025-01-22 at 20.44.27.png

 

Any help would be much appreciated.

Replies 5 (5)

Ahmad31
Shopify Partner
224 21 37

Hi @ellacoker please share your store url

Love my work? Buy Me A Coffee
Hire Me: Email me Or Chat on Whatsapp
If you found my solution helpful, please like and accept it. Your support is greatly appreciated!
Ahmad31
Shopify Partner
224 21 37

@ellacoker you want like this 

Ahmad31_0-1737546845599.png

Mobile screen view:

Ahmad31_1-1737546877406.png

 

  • Go to your Shopify admin panel.
  • Navigate to Online Store > Themes > Actions > Edit Code.
  • Open the theme.liquid file and paste the below code befor </head> tag. 

 

<style>
.collection-hero__title {
  text-align: left; /* Align text to the left by default */
}

@media (max-width: 768px) { /* Adjust breakpoint if needed */
  .collection-hero__title {
    text-align: center; /* Align text to the center on mobile screens */
  }
}
</style>

.

 

  • save the changes and check it.

 

Love my work? Buy Me A Coffee
Hire Me: Email me Or Chat on Whatsapp
If you found my solution helpful, please like and accept it. Your support is greatly appreciated!
ellacoker
Shopify Partner
287 1 74

Thanks for your quick reply.

 

The images you sent are exactly how i want it. I tried putting it in themes.liquid but this didnt work so I put it in component.collection.hero.css and that seems to fix the text alignment problem for both desktop and mobile. however, the items still do not come full width to the page on desktop. how can i fix this issue now?

 

Thanks again,

Ella.Screenshot 2025-01-23 at 09.17.30.png

 

 

Ahmad31
Shopify Partner
224 21 37

On my screen it looks well as you say 

Ahmad31_1-1737617174889.png

 

Love my work? Buy Me A Coffee
Hire Me: Email me Or Chat on Whatsapp
If you found my solution helpful, please like and accept it. Your support is greatly appreciated!