Using ® across various platforms

Hi All

I am building a website system and part of it sends out emails and the company name is a registered trademark.

In the emails I am using this code:

<span style='position: relative; font-size: 40%; line-height: 0; vertical-align: baseline; top: -1.2em;'>&reg;</span>

In some email programs, like the current Outlook, the R is small but aligned to the bottom and other programs, like the iPad email program, the R is too big and aligned way to the top etc.

Does anyone know a way to use the R, $reg;, and make it consistent across email programs?

Thanks for any help.

membarnes

I doubt if it makes any difference, but it might.

Try using &#174; instead Ā®

1 Like

I would use the Ā® as @Mittineague suggests, but youā€™ll have problems trying to get alignment working across email clients, which are ā€˜the world that time forgotā€™ in terms of standards and support for basic things like CSS.

If you want it in ā€œsuperscriptā€ positioning, so to speak, perhaps try the actual HTML element for that:

<sup>Ā®</sup>

Other than that, though, just place it there inline and let nature take its course, as there are much better things for you to spend your time on. :slight_smile:

Thanks for the help so farā€¦ I have been doing further research and it appears that what I want to do is almost impossibleā€¦ I have just added and tested making the R an image and that seems to be working a treat.

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.