I am currently facing an issue with the testimonials section on my website. The div has a background color that looks great on desktop, but when viewed on mobile devices, the testimonials text extends beyond the height of the background.
Here is the CSS class assigned to the div:
.quote{
background-color: #f7f7f7 !important;
border: 8px none;
height: 350px;
padding: 15px;
}
I have tried changing the height from 350px
to 100%
or auto
, but unfortunately, that did not solve the problem. I need the background to adjust its height based on the amount of text displayed in the testimonials.