Solutions list
Two solutions (or product offerings) and their features can be displayed side-by-side if space allows.
Example
Code sample
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<ul class="list_solutions">
<li data-theme="primary">
<h4 class="heading heading_paragraph">Event registrations</h4>
<img src="https://placekitten.com/400/400" width="400" height="400" alt="" loading="lazy">
<p>
<b>
When you need to know who’s coming
</b>
</p>
<ul class="list_ruled">
<li>Collect details for each attendee
<li>Waitlist if sold out
<li>Payment by credit card + invoice
<li>Check individual attendees in
<li>Use for online events
</ul>
<p>
<a href="#" class="button button_secondary button_theme_primary">
Learn more
<span class="screen_reader_only">about Event registrations</span>
</a>
</p>
</li>
<li data-theme="secondary">
<h4 class="heading heading_paragraph">Ticketing only</h4>
<img src="https://placekitten.com/500/500" width="500" height="500" alt="" loading="lazy">
<p>
<b>
When you’re just selling ‘seats’, e.g. Concerts
</b>
</p>
<ul class="list_ruled">
<li>Streamlined checkout
<li>Bulk buy tickets
<li>Payment by credit card
<li>Transferable PDF tickets
</ul>
<p>
<a href="#" class="button button_secondary button_theme_secondary">
Learn more
<span class="screen_reader_only">about Ticketing only</span>
</a>
</p>
</li>
</ul>
Usage notes
No elements are allowed between the
<ol>
or<ul>
and<li>
elements.Extends the Stripped list
Set the
primary
orsecondary
theme on each solution using thedata-theme
attribute.Uses the Ruled list for the list of features for each solution.
Uses the Secondary button for each call to action.
Please use a square image for each solution.
Source files