From time to time, you may want to remind your exhibitors about upcoming deadlines as soon as they log into the exhibitor console.
Setting up these alert messages in your a2zShow-powered event website is very simple!
All you need to do is update Message #1217 for the selected event via Global Admin, and leverage the bootstrap alert classes for styling your messages (see below).
Alerts are created with the .alert
class, followed by one of the four contextual classes .alert-success
, .alert-info
, .alert-warning
or .alert-danger.
Here are some examples:
Success Message
<div class="alert alert-success">
<strong>Success!</strong> Indicates a successful or positive action.
</div>
Informational Message
<div class="alert alert-info">
<strong>Info!</strong> Indicates a neutral informative change or action.
</div>
Warning Message
<div class="alert alert-warning">
<strong>Warning!</strong> Indicates a warning that might need attention.
</div>
Danger Message
<div class="alert alert-danger">
<strong>Danger!</strong> Indicates a dangerous action.
</div>
Your event website's Bootstrap CSS already includes the styles for these alert classes, so no additional edits are needed.