Having a problem with my words in the buttons, they seem to stack even if two words. How can this be fixed? I would like the words to be inline with no word wrap. Thanks
Topic summary
Banner button text in a Dawn theme image banner was wrapping onto two lines, even for short two-word labels. The goal was to force the label to remain on a single line without word wrap.
A screenshot was provided to illustrate the stacked button text.
- Fix implemented: Applying a CSS rule with white-space: no wrap; to the button text. This setting prevents line breaks so the entire label stays inline.
- Explanation: The CSS white-space property controls text wrapping behavior; using no wrap stops the browser from wrapping words onto a new line.
Result: The change worked as intended and the buttons now display text on one line. No additional adjustments, alternatives, or issues were raised.
Status: Resolved; no open questions or further actions noted.
Thanks, white-space: nowrap; worked just fine.
