Want to increase the size of image in default collection page in venture theme

Hey,

I want to increase the size of the image in the default collection page of the venture theme and also the image size gets smaller if the caption is large, I want to remove that too. It would be best if the image size gets bigger so that people can see designs clearly and the caption only displays two lines or so…

like in this given image(in mobile view)… I want the product image to be bigger and the caption that says “Never Underestimate A Girl Who Plays Basketball || Basketball Unisex T-shirt” should say something like “Never Underestimate A Girl Who Plays…” (something like that)

1 Like

@Jubenor

Please share your store URL.

1 Like

@dmwwebartisan

its → themarsmania.com

check collection page

Hey, @dmwwebartisan Just checking,

I have provided you the website URL, Please look into the problem

Thank you in advance

1 Like

@Jubenor

Please add the following code at the bottom of your assets/theme.scss.liquid file..

@media only screen and (max-width:749px){
.product-card__name {
    display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
}

@media only screen and (min-width:750px){
.product-card__name {
    display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
}

Hope this works.

1 Like

@dmwwebartisan

IT WORKED!!

Thank you very much

1 Like