Button text over two lines
-
Hello, how can I make the text inside a button with 2 lines as opposed to one single line? Because the text is long, I don’t want the button to be wide.
Hello,
Can you please share the page URL where the button is situated so I will check and give you a possible solution.
Best Regards.
Hello,
Please add this code to the Theme Settings > Custom CSS > Global:
.btn.btn-style-semi-round {
width: 150px; /* Set the desired width of the button */
white-space: normal; /* Allow text to wrap */
padding: 10px; /* Optional: Add padding for better appearance */
text-align: center; /* Center the text */
}
Best Regards.