Example Dropdown In One Column


Shortcode
[dropdown title="Dropdown 1 Title"]
Some content here...
[/dropdown]

[dropdown title="Dropdown 2 Title"]
Some content here...
[/dropdown]

Example Dropdown In Two Column

Shortcode
[dropdown_group]
[dropdown title="Dropdown 1 Title" span="6"]
Some content here...
[/dropdown]
[dropdown title="Dropdown 2 Title" span="6"]
Some content here...
[/dropdown]
[dropdown title="Dropdown 3 Title" span="6"]
Some content here...
[/dropdown]
[dropdown title="Dropdown 4 Title" span="6"]
Some content here...
[/dropdown]
[/dropdown_group]

Parameters

title
(required) specify a title for the dropdown.

span
(optional) Number of columns (max: 12) this dropdown should span. Useful for when you have multiple dropdowns you would like to show in a multi-column layout. The CGU website is on a 12 column grid so you may specify any number between 1 and 12. A two column layout, for instance would require span="6" since 6 is half of 12.
Note: You must wrap dropdowns in the dropdown_group shortcode in order for a multi-column layout to appear correctly.