sarajn Posted August 13 Share Posted August 13 Hello! I would like to make the ® as a superscript and smaller on our website. The ® is in headings and in texts and links. Can anyone assist and also in simple terms? (I am a Squarespace beginner!). Thanks! Sara Link to comment
tuanphan Posted August 15 Share Posted August 15 Can you share site url? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
tuanphan Posted August 18 Share Posted August 18 On 8/16/2024 at 4:21 PM, sarajn said: yes! www.unfoldmethod.com Try this code to Website Tools > Code Injection > Footer <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script> <script> $(document).ready(function(){ var term = '®'; $('div.html-block *').html(function () { return $(this).html().replace(new RegExp(term + "(?=[^>]*<)","ig"), "<span class='superscripts'>$&</span>"); }); }); </script> <style> span.superscripts { font-size: 16px; position: relative; top: -20px; } </style> Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment