I am encountering a CSS issue that seems quite simple. I have a text displayed below: "Big ideas. Lasting value."
https://i.sstatic.net/lcwnl.png
On mobile devices, I need to display this text on two lines. Despite trying various solutions, none of them have been successful.
This is the HTML code snippet:
<div class="home_firstrow" id="panel-one">
<div>
<h3> Big Ideas. Lasting Value.</h3>
<div class="container">
</div>
</div>
</div>
I attempted setting the white-space property to normal for the h3 element and even adjusting the height and min-height attributes, but unfortunately, none of these solutions worked. Do you have any suggestions on what else I could try? The challenge is to only display the text in two lines in mobile view using CSS. Thank you!