Aligning Text and Product Titles on Mobile in Impulse 7.4.0 Theme

Hello dear readers, I’m facing a challenge: I’m attempting to left-align text and product titles that are currently centered, on the mobile view within the Impulse 7.4.0 theme. So far, despite all my attempts, I haven’t been successful. Any form of assistance would be greatly appreciated.

1 Like

Hi @Brianvk

Would yo umind to share your store URL? Thanks!

Hi @Made4uo-Ribe , sure the link is:

1 Like

Thanks for the info, check thiso ne.

From your Shopify admin dashboard, click on “Online Store” and then “Themes”.

Find the theme that you want to edit and click on “Actions” and then “Edit code”.

In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

@media only screen and (max-width: 769px){
.product-single__meta {
    text-align: left;
}
.product__policies.rte.small--text-center {
    text-align: left !important;
}
.sales-point .icon-and-text {
    justify-content: left;
}
}

And Save.

Result:

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!

Thanks it did work out, i appericiate it! :slightly_smiling_face:

1 Like

Welcome, please dont forget to likes also. Thanks!

1 Like