Change font Size and More

If you have the full version of Final Exhibits 2, you can change the font size of the individual rows of text as below:

  1. Right-click your exemplar sticker.
  2. Click the Edit Sticker Template (Advanced) option
  3. The XML file describing that sticker will open in Notepad.
    changefont1




Look for the block of text in the XML file <!-- text on the sticker --> or something very similar. Directly beneath that header, note how there are rows of text in format <text......>@title1</text>. Each of these rows describe the text on the exemplar sticker.
changefont2






In this example, we are going to change the font-size of the first row of text on the sticker.
  1. Change font-size="14" to font-size="18" and SAVE the XML file.
  2. Right-click the exemplar sticker, and
  3. Click Refresh Sticker
  4. Note how the exemplar sticker has been updated to reflect your change. changefont3




Other available changes include:

  1. The X and Y positions of the sticker. (X=0, and Y=0 are in the upper left of the sticker, with X-axis projecting to the right, and Y-axis projecting downward)
  2. The font of the text. If you want to use a font with multiple words in it's name, you need to include the spaces -- e.g. font-family="Times New Roman"
  3. The font size, in points.
  4. The color of the text, in hex format.
  5. The justification of the text from the X and Y Positions. in this example, the text is centered (i.e. text-anchor="middle") at position x="70" y="24"

    Justification options are:
    text-anchor="left" to LEFT justify the text
    text-anchor="middle" to CENTER justify the text
    text-anchor="end" to RIGHT justify the text

  6. Finally, you can also add other stylings such bold or italics by adding font-weight="bold" and font-style="italics", as shown. changefont4