Hey everyone,
I’m trying to make it so it shows the full product title in the collections page on mobile using the Ella theme. I’ve tried every solution I can find on the internet and either I’m doing it wrong, or they just don’t work.
Thank you so much in advance for your help!
Hi @Manitoba971 , go to theme-style-responsive.scss.css and locate the following snippet :
@media (max-width:479px){
.product-item .product-title {
max-height: 22px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}}
Delete it and instead you all add the following:
@media (max-width:479px){
.product-item .product-title {
max-height: 22px;
white-space: wrap;
}}
Glad it helped, feel free to contact me if you need any help.