You are viewing limited content. For full access, please sign in.

Question

Question

Is there an easy way to get the text of my Form Title to be centered? Or am I missing something?

asked on July 15, 2016 Show version history

I would like to Center my Form Title. Is there a CSS for is or is it a customization I am missing? Please respond

Form TItle.MHT (463.5 KB)
0 0

Replies

replied on July 15, 2016

To center align just the form title, you can use the following CSS:

#form-title-wrap {text-align: center;}

The # indicates that Form-title-wrap is an ID. I found the ID to target the title text by using the F12 developer tools.

If you want to center align the title and all other major headers (anything that is an h1 element, such as table titles), you can use the following:

h1 {text-align: center;}

 

2 0
You are not allowed to follow up in this post.

Sign in to reply to this post.