Hello everyone,
Thanks in advance for your help !
I would like to put the title and the price on the same line (with a space between them) on my collection page.
BTW, I have Broadcast theme. 
For example :
Sac à dos Nico 54€
Do you know how to do it ?
Have a nice day !
1 Like
Moeed
2
Hey @Anne-Sophie1
Kindly share your Store URL and Password if enabled
Hello @Anne-Sophie1 ,
Please share your store URL and password.
So that I will check and let you know the exact solution here.
Hello @Anne-Sophie1
You can try this code: it will be helpful to you
Go to the Online Store->Theme->Edit code->Assets->theme.css>Add this code at the bottom.
.product-item--centered .product-item__title {
margin-bottom: -24px;
display: flex;
justify-content: left;
align-items: center;
}
.product-item__price__holder.has-siblings {
display: flex;
}
.product-item--centered .product-item__price__holder {
justify-content: flex-end;
}
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > custom.css and paste this at the bottom of the file:
.product-link.product-link--info {
display: flex;
flex-wrap: wrap;
}
.product__grid__price.product__grid__element {
flex-grow: 1;
}
.product__grid__element__default {
justify-content: end;
}
.product__grid__title.product__grid__element {
margin: 0;
}
Hello ! Thank you so much, it works ! 
However, I saw, when the title is longer the price can’t be aligned.
Is it possible to configure like that when the title is longer ?
Example :
Thank you !
1 Like
Hello There,
- In your Shopify Admin go to online store > themes > actions > edit code
- Find Asset > theme.css and paste this at the bottom of the file:
.product-link.product-link--info {
display: flex;
}
.product__grid__price.product__grid__element {
flex-grow: 1;
}
.product__grid__element__default {
justify-content: end;
}
.product__grid__title.product__grid__element {
margin: 0;
}
Hello,
Thank you for your help, but it doesn’t work.
Regards,
Dear Oscprofessional,
I try your advice but it doesn’t work. 
Thank you