Image Frames

Image Frames Shortcodes

You can show your images in different layout styles.


Default

By default, Bootstrap's thumbnails are designed to showcase linked images with minimal required markup.

Project Image
Project Image
Project Image

HTML Shortcode

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
<p>By default, Bootstrap's thumbnails are designed to showcase linked images with minimal required markup.</p>
<div class="row">
    <div class="col-md-4">
        <img class="img-responsive img-rounded mb-lg" src="/portals/2/img/projects/project.jpg" alt="Project Image" />
    </div>
    <div class="col-md-4">
        <img class="img-responsive img-circle mb-lg" src="/portals/2/img/projects/project-1.jpg" alt="Project Image" />
    </div>
    <div class="col-md-4">
        <span class="img-thumbnail">
            <img class="img-responsive" src="/portals/2/img/projects/project-2.jpg" alt="Project Image" />
        </span>
    </div>
</div>

Hover Styles

The thumbnail details can be displayed in different styles.

Default
Default Lighten
No Zoom
With Title and Type
Project Title Project Type
Centered Icons
Icons Colors
Bottom Info
Project Title Project Type
Bottom Info Dark
Project Title Project Type
With Captions
Project Title Project Type Lorem ipsum dolor sit amet, consectetur adipiscing elit. Facebook Twitter Linkedin
No Borders

HTML Shortcode

  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
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
<h4 class="mb-none">Hover Styles</h4>
<p>The thumbnail details can be displayed in different styles.</p>
<div class="row">
    <div class="col-md-4">
        <h5 class="text-semibold text-uppercase mt-lg">Default</h5>
        <a href="../../Portfolio/Single-Project">
            <div class="thumb-info">
                <span class="thumb-info-wrapper">
                    <img alt="" src="/portals/2/img/projects/project.jpg" class="img-responsive" />
                    <span class="thumb-info-action-icon">
                        <em class="fa fa-link"></em>
                    </span>
                </span>
            </div>
        </a>
    </div>
    <div class="col-md-4">
        <h5 class="text-semibold text-uppercase mt-lg">Default Lighten</h5>
        <a href="../../Portfolio/Single-Project">
            <div class="thumb-info thumb-info-lighten">
                <span class="thumb-info-wrapper">
                    <img alt="" src="/portals/2/img/projects/project-2.jpg" class="img-responsive" />
                    <span class="thumb-info-action-icon">
                        <em class="fa fa-link"></em>
                    </span>
                </span>
            </div>
        </a>
    </div>
    <div class="col-md-4">
        <h5 class="text-semibold text-uppercase mt-lg">No Zoom</h5>
        <a href="../../Portfolio/Single-Project">
            <div class="thumb-info thumb-info-no-zoom">
                <span class="thumb-info-wrapper">
                    <img alt="" src="/portals/2/img/projects/project.jpg" class="img-responsive" />
                    <span class="thumb-info-action-icon">
                        <em class="fa fa-link"></em>
                    </span>
                </span>
            </div>
        </a>
    </div>
</div>
<div class="row mt-xlg">
    <div class="col-md-4">
        <h5 class="text-semibold text-uppercase mt-lg">With Title and Type</h5>
        <a href="../../Portfolio/Single-Project">
            <div class="thumb-info">
                <span class="thumb-info-wrapper">
                    <img alt="" src="/portals/2/img/projects/project-4.jpg" class="img-responsive" />
                    <span class="thumb-info-title">
                        <span class="thumb-info-inner">Project Title</span>
                        <span class="thumb-info-type">Project Type</span>
                    </span>
                    <span class="thumb-info-action-icon">
                        <em class="fa fa-link"></em>
                    </span>
                </span>
            </div>
        </a>
    </div>
    <div class="col-md-4">
        <h5 class="text-semibold text-uppercase mt-lg">Centered Icons</h5>
        <div class="thumb-info thumb-info-centered-icons">
            <span class="thumb-info-wrapper">
                <img alt="" src="/portals/2/img/projects/project-5.jpg" class="img-responsive" />
                <span class="thumb-info-action">
                    <a href="#">
                        <span class="thumb-info-action-icon thumb-info-action-icon-light"><em class="fa fa-play-circle"></em></span>
                    </a>
                    <a href="../../Portfolio/Single-Project">
                        <span class="thumb-info-action-icon thumb-info-action-icon-light"><em class="fa fa-plus"></em></span>
                    </a>
                </span>
            </span>
        </div>
    </div>
    <div class="col-md-4">
        <h5 class="text-semibold text-uppercase mt-lg">Icons Colors</h5>
        <div class="thumb-info thumb-info-centered-icons">
            <span class="thumb-info-wrapper">
                <img alt="" src="/portals/2/img/projects/project-6.jpg" class="img-responsive" />
                <span class="thumb-info-action">
                    <a href="#">
                        <span class="thumb-info-action-icon thumb-info-action-icon-primary"><em class="fa fa-play-circle"></em></span>
                    </a>
                    <a href="#">
                        <span class="thumb-info-action-icon thumb-info-action-icon-secondary"><em class="fa fa-plus"></em></span>
                    </a>
                    <a href="#">
                        <span class="thumb-info-action-icon thumb-info-action-icon-tertiary"><em class="fa fa-link"></em></span>
                    </a>
                    <a href="#">
                        <span class="thumb-info-action-icon thumb-info-action-icon-light"><em class="fa fa-ellipsis-h"></em></span>
                    </a>
                </span>
            </span>
        </div>
    </div>
</div>
<div class="row mt-xlg">
    <div class="col-md-4">
        <h5 class="text-semibold text-uppercase mt-lg">Centered Info</h5>
        <a href="../../Portfolio/Single-Project">
            <div class="thumb-info thumb-info-centered-info">
                <span class="thumb-info-wrapper">
                    <img alt="" src="/portals/2/img/projects/project-7.jpg" class="img-responsive" />
                    <span class="thumb-info-title">
                        <span class="thumb-info-inner">Project Title <em>09/19/2015</em></span>
                        <span class="thumb-info-type">Project Type</span>
                    </span>
                    <span class="thumb-info-action-icon">
                        <em class="fa fa-link"></em>
                    </span>
                </span>
            </div>
        </a>
    </div>
    <div class="col-md-4">
        <h5 class="text-semibold text-uppercase mt-lg">Bottom Info</h5>
        <div class="thumb-info thumb-info-lighten thumb-info-bottom-info thumb-info-centered-icons">
            <span class="thumb-info-wrapper">
                <img alt="" src="/portals/2/img/projects/project.jpg" class="img-responsive" />
                <span class="thumb-info-title">
                    <span class="thumb-info-inner">Project Title</span>
                    <span class="thumb-info-type">Project Type</span>
                </span>
                <span class="thumb-info-action">
                    <a href="#">
                        <span class="thumb-info-action-icon thumb-info-action-icon-light"><em class="fa fa-play-circle"></em></span>
                    </a>
                    <a href="../../Portfolio/Single-Project">
                        <span class="thumb-info-action-icon thumb-info-action-icon-light"><em class="fa fa-plus"></em></span>
                    </a>
                </span>
            </span>
        </div>
    </div>
    <div class="col-md-4">
        <h5 class="text-semibold text-uppercase mt-lg">Bottom Info Dark</h5>
        <div class="thumb-info thumb-info-lighten thumb-info-bottom-info thumb-info-bottom-info-dark thumb-info-centered-icons">
            <span class="thumb-info-wrapper">
                <img alt="" src="/portals/2/img/projects/project-1.jpg" class="img-responsive" />
                <span class="thumb-info-title">
                    <span class="thumb-info-inner">Project Title</span>
                    <span class="thumb-info-type">Project Type</span>
                </span>
                <span class="thumb-info-action">
                    <a href="#">
                        <span class="thumb-info-action-icon thumb-info-action-icon-light"><em class="fa fa-play-circle"></em></span>
                    </a>
                    <a href="../../Portfolio/Single-Project">
                        <span class="thumb-info-action-icon thumb-info-action-icon-light"><em class="fa fa-plus"></em></span>
                    </a>
                </span>
            </span>
        </div>
    </div>
</div>
<div class="row mt-xlg">
    <div class="col-md-4">
        <h5 class="text-semibold text-uppercase mt-lg">Push Horizontally</h5>
        <a href="../../Portfolio/Single-Project">
            <div class="thumb-info thumb-info-lighten thumb-info-centered-info thumb-info-push-hor">
                <span class="thumb-info-wrapper">
                    <img alt="" src="/portals/2/img/projects/project-4.jpg" class="img-responsive" />
                    <span class="thumb-info-title">
                        <span class="thumb-info-inner">Project Title</span>
                        <span class="thumb-info-type">Project Type</span>
                    </span>
                    <span class="thumb-info-action-icon">
                        <em class="fa fa-link"></em>
                    </span>
                </span>
            </div>
        </a>
    </div>
    <div class="col-md-4">
        <h5 class="text-semibold text-uppercase mt-lg">With Captions</h5>
        <div class="thumb-info thumb-info-hide-wrapper-bg">
            <span class="thumb-info-wrapper">
                <img alt="" src="/portals/2/img/projects/project-4.jpg" class="img-responsive" />
                <span class="thumb-info-title">
                    <span class="thumb-info-inner">Project Title</span>
                    <span class="thumb-info-type">Project Type</span>
                </span>
            </span>
            <span class="thumb-info-caption">
                <span class="thumb-info-caption-text">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</span>
                <span class="thumb-info-social-icons">
                    <a target="_blank" href="http://www.facebook.com"><em class="fa fa-facebook"></em><span>Facebook</span></a>
                    <a href="http://www.twitter.com"><em class="fa fa-twitter"></em><span>Twitter</span></a>
                    <a href="http://www.linkedin.com"><em class="fa fa-linkedin"></em><span>Linkedin</span></a>
                </span>
            </span>
        </div>
    </div>
    <div class="col-md-4">
        <h5 class="text-semibold text-uppercase mt-lg">Hide Info Hover</h5>
        <a href="../../Portfolio/Single-Project">
            <div class="thumb-info thumb-info-centered-info thumb-info-hide-info-hover">
                <span class="thumb-info-wrapper">
                    <img alt="" src="/portals/2/img/projects/project.jpg" class="img-responsive" />
                    <span class="thumb-info-title">
                        <span class="thumb-info-inner">Project Title</span>
                        <span class="thumb-info-type">Project Type</span>
                    </span>
                </span>
            </div>
        </a>
    </div>
</div>
<div class="row mt-xlg">
    <div class="col-md-12">
        <h5 class="text-semibold text-uppercase mt-lg">No Borders</h5>
    </div>
</div>
<div class="row">
    <div class="col-md-4">
        <a href="../../Portfolio/Single-Project">
            <div class="thumb-info thumb-info-lighten thumb-info-centered-info thumb-info-no-borders mt-lg">
                <span class="thumb-info-wrapper">
                    <img alt="" src="/portals/2/img/projects/project-2.jpg" class="img-responsive" />
                    <span class="thumb-info-title">
                        <span class="thumb-info-inner">Project Title</span>
                        <span class="thumb-info-type">Project Type</span>
                    </span>
                </span>
            </div>
        </a>
    </div>
    <div class="col-md-4">
        <a href="../../Portfolio/Single-Project">
            <div class="thumb-info thumb-info-no-borders mt-lg">
                <span class="thumb-info-wrapper">
                    <img alt="" src="/portals/2/img/projects/project-4.jpg" class="img-responsive" />
                    <span class="thumb-info-title">
                        <span class="thumb-info-inner">Project Title</span>
                        <span class="thumb-info-type">Project Type</span>
                    </span>
                    <span class="thumb-info-action-icon">
                        <em class="fa fa-link"></em>
                    </span>
                </span>
            </div>
        </a>
    </div>
    <div class="col-md-4">
        <div class="thumb-info thumb-info-lighten thumb-info-bottom-info thumb-info-bottom-info-dark thumb-info-centered-icons thumb-info-no-borders mt-lg">
            <span class="thumb-info-wrapper">
                <img alt="" src="/portals/2/img/projects/project-1.jpg" class="img-responsive" />
                <span class="thumb-info-title">
                    <span class="thumb-info-inner">Project Title</span>
                    <span class="thumb-info-type">Project Type</span>
                </span>
                <span class="thumb-info-action">
                    <a href="#">
                        <span class="thumb-info-action-icon thumb-info-action-icon-light"><em class="fa fa-play-circle"></em></span>
                    </a>
                    <a href="../../Portfolio/Single-Project">
                        <span class="thumb-info-action-icon thumb-info-action-icon-light"><em class="fa fa-plus"></em></span>
                    </a>
                </span>
            </span>
        </div>
    </div>
</div>

Grid


HTML Shortcode

 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<div class="content-grid mt-lg mb-lg">
    <div class="row content-grid-row">
        <div class="content-grid-item col-md-3 center">
            <img alt="" class="img-responsive" src="/portals/2/img/logos/logo-1.png" />
        </div>
        <div class="content-grid-item col-md-3 center">
            <img alt="" class="img-responsive" src="/portals/2/img/logos/logo-2.png" />
        </div>
        <div class="content-grid-item col-md-3 center">
            <img alt="" class="img-responsive" src="/portals/2/img/logos/logo-3.png" />
        </div>
        <div class="content-grid-item col-md-3 center">
            <img alt="" class="img-responsive" src="/portals/2/img/logos/logo-4.png" />
        </div>
    </div>
    <div class="row content-grid-row">
        <div class="content-grid-item col-md-3 center">
            <img alt="" class="img-responsive" src="/portals/2/img/logos/logo-5.png" />
        </div>
        <div class="content-grid-item col-md-3 center">
            <img alt="" class="img-responsive" src="/portals/2/img/logos/logo-6.png" />
        </div>
        <div class="content-grid-item col-md-3 center">
            <img alt="" class="img-responsive" src="/portals/2/img/logos/logo-1.png" />
        </div>
        <div class="content-grid-item col-md-3 center">
            <img alt="" class="img-responsive" src="/portals/2/img/logos/logo-2.png" />
        </div>
    </div>
</div>
<hr class="tall" />
<div class="content-grid content-grid-dashed mt-xlg mb-lg">
    <div class="row content-grid-row">
        <div class="content-grid-item col-md-4 center">
            <img alt="" class="img-responsive" src="/portals/2/img/logos/logo-1.png" />
        </div>
        <div class="content-grid-item col-md-4 center">
            <img alt="" class="img-responsive" src="/portals/2/img/logos/logo-2.png" />
        </div>
        <div class="content-grid-item col-md-4 center">
            <img alt="" class="img-responsive" src="/portals/2/img/logos/logo-3.png" />
        </div>
    </div>
    <div class="row content-grid-row">
        <div class="content-grid-item col-md-4 center">
            <img alt="" class="img-responsive" src="/portals/2/img/logos/logo-5.png" />
        </div>
        <div class="content-grid-item col-md-4 center">
            <img alt="" class="img-responsive" src="/portals/2/img/logos/logo-6.png" />
        </div>
        <div class="content-grid-item col-md-4 center">
            <img alt="" class="img-responsive" src="/portals/2/img/logos/logo-1.png" />
        </div>
    </div>
    <div class="row content-grid-row">
        <div class="content-grid-item col-md-4 center">
            <img alt="" class="img-responsive" src="/portals/2/img/logos/logo-2.png" />
        </div>
        <div class="content-grid-item col-md-4 center">
            <img alt="" class="img-responsive" src="/portals/2/img/logos/logo-1.png" />
        </div>
        <div class="content-grid-item col-md-4 center">
            <img alt="" class="img-responsive" src="/portals/2/img/logos/logo-6.png" />
        </div>
    </div>
</div>