# Vertically Centering Text in a Fixed-Height Table Row

**URL:** https://community.silverfin.com/t/vertically-centering-text-in-a-fixed-height-table-row/2596
**Category:** Templates
**Tags:** styling
**Created:** [November 5, 2025, 4:00pm UTC](https://community.silverfin.com/t/vertically-centering-text-in-a-fixed-height-table-row/2596 "2025-11-05T16:00:00Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Sebastien](https://yyz2.discourse-cdn.com/flex030/user_avatar/community.silverfin.com/sebastien/32/2366_2.png) [@Sebastien](https://community.silverfin.com/u/Sebastien)
#### Post date: [November 5, 2025, 4:00pm UTC](https://community.silverfin.com/t/vertically-centering-text-in-a-fixed-height-table-row/2596/1 "2025-11-05T16:00:00Z")

</div>

For my title page, I want to center the title within a frame that is slightly offset from the page (it’s not exactly in the middle of the page).  
Using `<br>` tags, I managed to position it at the right height and then create a table.

Now, I would like the second row of my table to have an exact height of 70 px, and the text `{{ page_title.title }}` inside that row should be vertically centered.

Which attributes should I add to the code below?

```auto
<br><br><br><br><br><br><br><br><br><br><br><br><br>

<table class="usr-width-100" class="usr-bordered">
  <thead>
    <tr>
     <th class="usr-align-left" class="usr-width-10"></th>
     <th class="usr-align-left" class="usr-width-80"></th>
     <th class="usr-align-left" class="usr-width-10"></th>
   </tr>
  </thead>
  <tbody> 
  
   <tr>
     <td class="usr-align-right"></td>
     <td class="usr-align-center"><font color="ffffff" size ="30">{{page_title.title}}</font></td>
     <td class="usr-align-right"></td>
   </tr>
  </tbody>
</table>

```

Thanks in advance,

Sebastien

---

<div class="post-metadata">

### Author: ![Romy\_Vermeeren](https://yyz2.discourse-cdn.com/flex030/user_avatar/community.silverfin.com/romy_vermeeren/32/2295_2.png) [@Romy\_Vermeeren](https://community.silverfin.com/u/Romy_Vermeeren)
#### Post date: [November 12, 2025, 12:02pm UTC](https://community.silverfin.com/t/vertically-centering-text-in-a-fixed-height-table-row/2596/2 "2025-11-12T12:02:43Z")

</div>

Hi @Sebastien and welcome to the Community!

We don’t support flexibility in terms of cell height.

To align content vertically you can apply `usr-valign-center`

You can find an overview of the supported classes here: [HTML tables](https://developer.silverfin.com/docs/html-tables#/supported-html-table-classes)

FYI you don’t need to repeated `class=””`for every class you wish to add. You can add them all together just separated by a space e.g. `class=”usr-width-100 usr-align-left”`

KR

Romy
