Halp! with my Tribute page please

So I’m pretty lost. I’m making a tribute page to Mr.Greg Lemond, but having some trouble keeping his name inside the banner at the top with the picture of him riding. This is what I have so far

His name gets lost behind the

element underneath and blends with the background.

This is the area in question I believe. Could use a gentle nudge in the right direction. Thanks.

.jumbotron h1 {
position: relative;
padding-top: 25%;
padding-left: 3%;
padding-bottom: 1%;
font-family: ‘Permanent Marker’, cursive;
color: yellow;
}

Hey DeathstarDude,

Before I go on you should know I have only just finished my own tribute page, I’m no expert by any means.

I believe the problem lies with you HTML, not the CSS. You have your containers set to container-fluid, but only your second div has its width defined by with “class=col-xs-8”.

Try putting your h1 Greg Lemond /h1 inside its own div like so:
<div class=“col-xs-4”>
<h1>Greg Lemond</h1>
</div>

(nested inside your <div class=“row”></div>)

edit: formatting