You need to be logged in to post in the forum - Log In

An active JCE Pro Subscription is required to post in the forum - Buy a Subscription

Support is currently Offline

Official support hours
Monday to Friday
09:00 - 17:00 Europe/London (BST)

Please create a new Ticket and we will get back to you as soon as we can.

#117590 Orientation of text in headers of tables?

Posted in ‘Editor’
This is a public ticket

Everybody will be able to see its contents. Do not include usernames, passwords or any other sensitive information.

Latest post by hing on Wednesday, 11 March 2026 11:05 GMT

hing

Hi,

e.g. in Excel I can set the orientation of the text of a header in a diagonal / vertical direction - see attached image. Is it possible in JCE too - with standard commands and without complex modifications?

Have a fine day!

Attachments

Ryan

Is it possible in JCE too - with standard commands and without complex modifications?

No, this can only be done with css. You could for example create a css class in your template stylesheet, which you can then apply to the table cell, eg:

td.rotate-text,
th.rotate-text {
    transform: rotate(90deg);
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
}

Ryan Demmer

Lead Developer / CEO / CTO

Just because you're not paranoid doesn't mean everybody isn't out to get you.

hing

Thanks, Ryan,

great support!