I’m working on the Tribute challenge right now and in the example the image is nested in a thumbnail.
I’m trying to do the same on mine but I can’t seem to figure out how the thumbnail works. I read about it on the bootstrap website but it just doesn’t seem to work on my codepen: http://codepen.io/colesam/pen/YZjbzK
I have a feeling that I’m not formatting something correctly with the rows/columns in bootstrap. If someone could explain where I went wrong I’d really appreciate it.
Not sure what you’re trying to achieve. Everything looks good as far as I can tell. Tour image is only 600x450px so it’s not gonna take more than those 600px unless you stretch it.
That fixed it, thank you very much. I’m now running into an issue where when the screen is stretched wider, the thumbnail seems to widen while the picture stays the same size. Any tips for this?
<body>
<div class="container-fluid">
<div class="jumbotron-fluid" style="background-color: white">
<h1 class="text-center" id="title">Christopher J. McCandless</h1>
<div class="row">
<div class="col-xs-8 col-xs-offset-2">
<div class="thumbnail">
<img src="http://www.jeffhead.com/images/ITW-07.jpg" class="img-responsive" id="picture-main">
<div class="caption text-center">
<h3><em>Christopher McCandless standing in the Alaskan Wild</em></h3>
</div>
</div>
</div>
</div>
<br>
<br>
<div id="content">
<h2 class="text-center">Who is Alexander Supertramp?</h2>
<p>
Christopher J. McCandless was an American hiker and itinerant traveler, who also went by the name "Alexander Supertramp". After graduating from college in 1990, McCandless traveled the United States, and eventually hitchhiked to Alaska in April 1992.There,
he set out along an old mining road known as the Stampede Trail, with minimal supplies, hoping to live simply off the land. Almost four months later, McCandless' decomposing body, weighing only 30 kilograms (66 lb), was found by hunters in a converted
bus used as a backcountry shelter along the Stampede Trail, on the eastern bank of the Sushana River. His cause of death was officially ruled to be starvation, although the exact cause remains the subject of some debate.
</p>
</div>
</div>
</div>
</body>