Message box styles:

‘Info’ style:

This is a sample of the ‘info’ style message box shortcode. To use this style use the following shortcode:
[code language=”php” gutter=”false” tabsize=”4″ toolbar=”true”][message type="info"]Your message goes here… [/message][/code]

‘success’ style:

This is a sample of the ‘success’ style message box shortcode. To use this style use the following shortcode:
[code language=”php” gutter=”false” tabsize=”4″ toolbar=”true”][message type="success"]Your message goes here… [/message][/code]

‘warning’ style:

This is a sample of the ‘warning’ style message box shortcode. To use this style use the following shortcode:
[code language=”php” gutter=”false” tabsize=”4″ toolbar=”true”][message type="warning"]Your message goes here… [/message][/code]

‘erroneous’ style:

This is a sample of the ‘erroneous’ style message box shortcode. To use this style use the following shortcode:
[code language=”php” gutter=”false” tabsize=”4″ toolbar=”true”][message type="erroneous"]Your message goes here… [/message][/code]

‘simple’ style:

Your info message goes here…
[code language=”php” gutter=”false” tabsize=”4″ toolbar=”true”][message type="simple" bg_color="#EEEEEE" color="#333333"]Your message goes here… [/message][/code]

‘pre-formatted’ text style:

This is an example of 'preformatted' text.
To use this style use the following under HTML mode:
[code language=”html” gutter=”false” tabsize=”4″ toolbar=”true”]<pre>Your text goes here…</pre>[/code]

‘custom’ style (example 1):

This is an example of a custom type message box with default parameters. To use this style use the following shortcode:
[code language=”php” gutter=”false” tabsize=”4″ toolbar=”true”][message type="custom"]Your info message goes here…[/message][/code]

‘custom’ style (example 2):

This is an example of a custom type message box with various parameters. You could specify width, start_color, end_color, border (refers to the border color), and color (refers to the text color). To use this style use the following shortcode:
[code language=”php” gutter=”false” tabsize=”4″ toolbar=”true”][message type="custom" width="100%" start_color="#FFFCB5" end_color="#F4CBCB" border="#BBBBBB" color="#333333"]Your info message goes here…[/message][/code]

‘custom’ style (example 3):

Here’s an example an a custom message box with width of ‘50%’. To use this style use the following shortcode:
[code language=”php” gutter=”false” tabsize=”4″ toolbar=”true”][message type="custom" width="50%" start_color="#fffff7" end_color="#B5EDFF" border="#999999" color="#333333"]Your info message goes here…[/message][/code]

‘custom’ style (example 4 – center alignment):

Here’s an example an a custom message box with center alignment, the other options are left (default) and right. To use this style use the following shortcode:
[code language=”php” gutter=”false” tabsize=”4″ toolbar=”true”][message type="custom" width="50%" align="center" start_color="#fffff7" end_color="#d7acd0" border="#d7acd0" color="#832674"]Your info message goes here…[/message][/code]

‘custom’ style (example 5 – right alignment):

Here’s an example an a custom message box with right alignment, the other options are left (default) and center. To use this style use the following shortcode:
[code language=”php” gutter=”false” tabsize=”4″ toolbar=”true”][message type="custom" width="50%" align="center" start_color="#fffff7" end_color="#B5EDFF" border="#999999" color="#333333"]Your info message goes here…[/message][/code]