diff options
| author | Nikita Rushmanov <[email protected]> | 2015-01-23 02:14:12 -0800 |
|---|---|---|
| committer | Nikita Rushmanov <[email protected]> | 2015-01-23 02:14:12 -0800 |
| commit | d41f114e9b11eddd3c947755801a35c0687c40e1 (patch) | |
| tree | ba252447523117a846321f40c8499a6035894676 /docs | |
| parent | ca0fb736c70b6fd2814254fd8750eef42a3c9d86 (diff) | |
| download | bootstrap-d41f114e9b11eddd3c947755801a35c0687c40e1.tar.xz bootstrap-d41f114e9b11eddd3c947755801a35c0687c40e1.zip | |
Fix image order in carousel example
When the screen is shrunk below the md threshold, all the featurette columns stack.
However, since the second featurette is "backwards", when stacked the second featurette
looked awkward as the image came before the heading.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/examples/carousel/index.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/examples/carousel/index.html b/docs/examples/carousel/index.html index 71fdb3ec7..eaa5ff89a 100644 --- a/docs/examples/carousel/index.html +++ b/docs/examples/carousel/index.html @@ -167,13 +167,13 @@ <hr class="featurette-divider"> <div class="row featurette"> - <div class="col-md-5"> - <img class="featurette-image img-responsive center-block" data-src="holder.js/500x500/auto" alt="Generic placeholder image"> - </div> - <div class="col-md-7"> + <div class="col-md-7 col-md-push-5"> <h2 class="featurette-heading">Oh yeah, it's that good. <span class="text-muted">See for yourself.</span></h2> <p class="lead">Donec ullamcorper nulla non metus auctor fringilla. Vestibulum id ligula porta felis euismod semper. Praesent commodo cursus magna, vel scelerisque nisl consectetur. Fusce dapibus, tellus ac cursus commodo.</p> </div> + <div class="col-md-5 col-md-pull-7"> + <img class="featurette-image img-responsive center-block" data-src="holder.js/500x500/auto" alt="Generic placeholder image"> + </div> </div> <hr class="featurette-divider"> |
