Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Superscripted Copyrights in HTML/CSS

Status
Not open for further replies.

richmc

Technical User
Sep 24, 2002
3
GB
I'm having problems putting legible superscripted copyrights and registered trademark symbols into a body of text without causing unsightly additional whitespace between the line the symbol is on and ther line above.

Does anyone now how I can achieve this in an attractive format?

The options seem to be to shrink the symbol to a tiny size where it becomes a mess and you cannot see what it is, or putting up with a big gap in the text.
 
Hi,

Try it with <small><sup>&amp;#169;</sup></small>

<html>
<head>
</head>

<body>

<p>
trade<br>
trade<small><sup>&amp;#169;</sup></small><br>
normal text<br>
trade<small><sup>&amp;#174;</sup></small><br>
20<small><sup>st</sup></small><br>
</p>

</body>
</html>

Hope this helps,
Erik <-- My sport: Boomerang throwing !!
!! Many Happy Returns !! -->
 
Yeah but look at this in IE5.5+

<html>
<head>
<style>
p {font-family:Arial;font-size:10pt;}
</style>
</head>
<body>
<p>
The quick brown fox ate my monkeys. The quick brown fox ate my monkeys.
The quick brown fox ate my monkeys. The quick brown fox ate my monkeys.
The quick brown fox ate my monkeys<small><sup>&#153;&reg;</sup></small>.
The quick brown fox ate my monkeys. The quick brown fox ate my monkeys.
The quick brown fox ate my monkeys<font size=&quot;-2&quot;><sup>&#153;&reg;</sup></font></font>.
The quick brown fox ate my monkeys.</p>
</body>
</html>

The symbols are tiny little things...barely able to see what they are - and unfortunately we can't really change text size as the site is huge and established.

Also in N4.5 the symbols whilst visible are causing additional whitespace.

:-|
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top