- [x] I've checked [docs](https://rich.readthedocs.io/en/latest/introduction.html) and [closed issues](https://github.com/Textualize/rich/issues?q=is%3Aissue+is%3Aclosed) for possible solutions. - [x] I can't find my issue in the [FAQ](https://github.com/Textualize/rich/blob/master/FAQ.md). <!-- WAIT! Is this a feature request? Rich isn't accepting new features. If it can be implemented in a third-party library, then that is what I recommend. Rich *may* accept enhancements to existing features, if they don't have a disruptive impact on the API. If you think your feature is exceptional, then please make your case in a discussion. --> **Describe the bug** As of Rich 14.3.0, when `soft_wrap` is `True`, then a table's title prints on the left, regardless of the `title_justify` value. This code reproduces the issue. ```Python from rich.console import Console from rich.table import Table table = Table(title="The Title", title_justify="center") table.add_column("Column 1") table.add_column("Column 2") c = Console() c.print(table) c.print() c.print(table, soft_wrap=True) ``` The second table should have its title centered. <img width="228" height="205" alt="Image" src="https://github.com/user-attachments/assets/a9234468-eb64-4a3f-8343-73e3643b15f4" /> **Platform** rich==14.3.1 Python 3.13.5 Debian 13.3 xfce4-terminal 1.1.4