Product description cutoff Dawn theme

As seen by the images, the description of some products ON MOBILE is incomplete and not shown fully(works fine on pc).I need the description to show fully on mobile. The website is Young Professionals Collective (ypcollective.com) and the product shown in the images attached can be found on the homepage. TIA

Hello @ypcollective

Follow the steps
Go to Online Store > Theme > Edit Code > base.css file

Add the code at the end of file

.card__heading a {
height: auto;
}

Thank you

  • Here is the solution for you @ypcollective
  • Please follow these steps:

  • Then find the base.css or theme.css file.
  • Then add the following code at the end of the file and press ‘Save’ to save it.
@media only screen and (max-width: 600px) {
.card__information .card__heading a {
 height: auto !important;
}
}
  • Here is the result you will achieve:

  • Please press ‘Like’ and mark it as ‘Solution’ if you find it helpful. Thank you.