
Oriana Espinoza
1,078 PointsI made the styles changes in the 6:21 min and the changes doesn´t apply.
header { padding: 2rem 0; }
.featured { height: 500px; background: #F99; margin-bottom: 2rem; }
.profile-info img { max-width: 6rem; max-height: 6rem; border-radius: 1rem; }
2 Answers

Jack Cummins
17,416 PointsIt must be that you're using a different browser than him.

Gemz Nunn
15,155 PointsI had the same issue. It turned out I hadn't closed a CSS property correctly, so double-check your code for missing semi-colons.
I also adapted to code slightly to use Bootstrap's spacing (mb-4) rather than creating a new margin-bottom property in .featured, like this:
<!-- featured -->
<section class="featured mb-4"> </section><!-- /featured -->
My CSS now looks like this:
.featured {
height: 500px;
background: #EEE;
}
Jack Cummins
17,416 PointsJack Cummins
17,416 PointsWhoops. That actully couldn't be correct.