Contribute 3 does not do Superscripts

Ask a Question related to Macromedia Contribute General Discussion, Design and Development.

  1. #1

    Default Re: Contribute 3 does not do Superscripts

    The option for superscripts and subscripts is not available in Contribute, but
    what I have done is added the following to my stylesheet:

    .superscript { vertical-align: super; font-size: smaller }
    .subscript { vertical-align: sub; font-size: smaller }

    Then you can use <span class="superscript">1</span> to get a superscript 1.
    For html, this would be &sup1;

    It's a little annoying that this was left out, since I have a group of 20+
    scientists that I don't want to give external editing rights to...

    dnickles Guest

  2. Similar Questions and Discussions

    1. Do I need Contribute AND Contribute Publishing Server?
      Do I need to have Contribute Publishing Server installed on the web server on order to update web pages with Contribute? - Andrea
    2. CSS XML and superscripts and subscripts...
      Hello all, Simple... I am loading text into a dynamic text field via XML and styling it using a CSS stylesheet . But here is my problem, how can...
    3. Printing problem - superscripts, % symbol
      I'm running OSX 10.4.6 and Acrobat 7.0.8. One particular pdf file (2MB and downloaded from a magazine publisher) will not print superscripts or other...
    4. Problem creating keys in Contribute 2 for Contribute 3users
      Hi I'm using Contribute 2 or Dreamweaver MX to administer a site. I created a key for a Contribute 3 user. When they try and install the key they...
    5. Contribute 3 does not do Superscripts
      I am researching this also... looks like it was left out... surprising oversight and a pain!!
  3. #2

    Default Re: Contribute 3 does not do Superscripts

    Well you can create a custom class in your style sheet to mimic superscript and
    sub script text, the problem is that I'm not so sure it'll look good in
    Contribute 3's edit view. Browsers understand how to display this though, but
    don't count on Netscape 4.x and older.

    .sup { vertical-align:super; }

    .sub { vertical-align:sub; }

    HTML:

    E=mc<span class="sup">2</span>

    mzanime.com Guest

  4. #3

    Default Re: Contribute 3 does not do Superscripts

    Darn dnickles! You beat me :-P
    mzanime.com Guest

  5. #4

    Default Re: Contribute 3 does not do Superscripts

    I added my request for adding the superscript, subscript, and acronym
    capability to the following Macromedia wish list site:
    [url]http://www.macromedia.com/support/email/wishform/[/url]

    If you don't want to do a work-around in future versions of Contribute or on
    new web sites, please take a moment and add your request to the wish list too!
    :)

    -Darryl

    dnickles Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139