Modifying the appearance of recalled text

Problem

You want to modify the way recalled text is displayed on screen.

Solution

Use the SUBSTITUT CSS style or create a new CSS and tag the recalled text using that style.

Discussion

Text that is recalled using the &QUESTIONNAME syntax or the &&AQUESTIONNAME syntax is automatically tagged with the SUBSTITUT CSS style. You can change the appearance of the recalled text by adjusting this style in the project styles.css file.

You can also implement finer adjustments by tagging the recall using a custom style as in:

    <SPAN CLASS=somestyle>&QUESTIONNAME</SPAN>

and defining that new style in the styles.css file. For example, the following style definition displays the recalled text entirely in lowercase:

    .somestyle {text-transform: lowercase}

Modifying the appearance of recalled text

Problem

You want to modify the way recalled text is displayed on screen.

Solution

Use the SUBSTITUT CSS style or create a new CSS and tag the recalled text using that style.

Discussion

Text that is recalled using the &QUESTIONNAME syntax or the &&AQUESTIONNAME syntax is automatically tagged with the SUBSTITUT CSS style. You can change the appearance of the recalled text by adjusting this style in the project styles.css file.

You can also implement finer adjustments by tagging the recall using a custom style as in:

    <SPAN CLASS=somestyle>&QUESTIONNAME</SPAN>

and defining that new style in the styles.css file. For example, the following style definition displays the recalled text entirely in lowercase:

    .somestyle {text-transform: lowercase}