Price on same line as title on collection page

Hi,

I was wondering if I can edit my code so the product price is aligned right on the same line as the product title in my collection grid (instead of underneath each other). I’m using the broadcast theme

thank you in advance!

@KetanKumar

Hi @Ellen13

For that need html code changes but you can simply make both are in one line by this fast code.

  1. Go to Online Store->Theme->Edit code
  2. Asset->base.css Or theme.scss-> paste bellow code in bottom of file
.product-link{display: flex; flex-wrap: wrap; justify-content: center;}
.product-information .price{padding-left: 20px;}

Thank you so much!