Adjust 3d Text font size to match resolution

Okay so in short, what i want to do is fix this:

My normal resolution:
http://pokit.org/get/img/8428c15dab5a4285857e72f8eb0b3a99.jpg

Fullscreen resolution:
http://pokit.org/get/img/9021befb4bdb15c488b65b8469384760.jpg

How could i achieve this?

Don’t work in “free aspect”, always use fixed resolution because you will have to align this kind of stuff from code depending on resolution.

Use Screen.height * a number to place them in relative positions.

If you have different aspect ratios you might need to do one for each ratio.

You should normally use free aspect so you can make sure your GUI isn’t hard-coded to a specific resolution or aspect ratio, and change the window size regularly too.

–Eric