From Final Fantasy XIV Online Wiki
Jump to navigation
Jump to search
{{noticebox|color=|title=|content=}}
Displays a noticebox.
Parameters
- unnamed parameter 1
- content
- Noticebox content. Named parameter takes precedence over unnamed parameter.
- title
- Title rendered as a big fancy heading at the top of the notice.
- color
- Background for the title (if there is one). Can be one of the presets green, red, or blue (default), or any CSS color (use sparingly).
Examples
| Markup |
Renders as |
{{noticebox
| title = Demo
| color = green
| content = This is a demo noticebox. It is green because it can be placed there.
}}
|
Demo
This is a demo noticebox. It is green because it can be placed there.
|
| Markup |
Renders as |
{{noticebox
| title = Demo
| color = red
| content = This is a demo noticebox. It is red because your actions have consequences.
}}
|
Demo
This is a demo noticebox. It is red because your actions have consequences.
|
| Markup |
Renders as |
{{noticebox
| title = Demo
| content = This is a demo noticebox. It is blue because I didn't pick anything else.
}}
|
Demo
This is a demo noticebox. It is blue because I didn't pick anything else.
|
| Markup |
Renders as |
{{noticebox
| title = Demo
| color = #f9638b
| content = This is a demo noticebox. It is pink because that's a neat color.
}}
|
Demo
This is a demo noticebox. It is pink because that's a neat color.
|
| Markup |
Renders as |
{{noticebox|This is a noticebox with no title or color.}}
|
This is a noticebox with no title or color.
|