Error rendering macro 'rw-search'

null

Downloads

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The Cinema slide editor Slide Editor can be found in the MarvelClient Configuration database, under MarvelClient Upgrade\Configuration(s)\Cinema Slides:

...

Last but not least, you might want know a couple of useful HTML tags and codes:

Tag/CodeExplanation
 Non-breakable space
Whilst a blank ( ) might be wrapped into the next line,   will not.
Note: you must mark   as Pass-Thru HTML via the Text menu.
<table border=0>Opens a table, must contain at least one <tr> and <td>.
Must be closed at end of table using </table>
<tr>

Opens a table row, must contain at least one <td>
Must be closed at end of row using </tr>

<td>Opens a table column.
Must be closed at end of column using </td>
<div>Creates a "container" which can be flexibly positioned and formatted using CSS.
Must be closed at end of container using </div>
<p>Creates a "paragraph" which - by default - has more spacing to the previous paragraph than when using <br/>
Must be closed at end of paragraph using </p>
<br/>Creates a line break.
As stated above,
sentence 1<p>sentence 2</p>
has slightly larger spacing by default than 
sentence 1<br/>sentence 2