Hi,
I’m trying to left-align the following elements on impulse theme, have tried many solutions but can’t get it to work:
Here is an example of what I’m after from another website:
Here is my website:
https://emery-london.com/products/lisa-dress
Any help is greatly appreciated !!
1 Like
Hi @kingbeanz
Check this one.
- From you Admin page, go to Online Store > Themes
- Select the theme you want to edit
- Under the Asset folder, open the main.css(base.css, style.css or theme.css)
- Then place the code below at the very bottom of the file.
@media only screen and (max-width: 768px) {
.grid__item.medium-up--one-half .product-single__meta {
text-align: left !important;
}
.grid__item.medium-up--one-half .sales-point .icon-and-text {
justify-content: left;
}
}