Re: Product Title and Price left align

Solved

How can I left align product title and price?

lukasphr
New Member
7 0 0

Hello i would like to move the product title and price from the center to the left side. 

I tried it with different codes that are provided on similar questions but none of them worked for me.

 

Accepted Solution (1)

sanjaykmr
Tourist
6 1 1

This is an accepted solution.

@lukasphr add below code on base.css

 

.product-card__info {
text-align: left;
align-content: start;
justify-items: start;
}

.product-card__info .justify-items-center {
justify-items: start;
}

View solution in original post

Replies 2 (2)

sanjaykmr
Tourist
6 1 1

This is an accepted solution.

@lukasphr add below code on base.css

 

.product-card__info {
text-align: left;
align-content: start;
justify-items: start;
}

.product-card__info .justify-items-center {
justify-items: start;
}

lukasphr
New Member
7 0 0

Thank you so much!!