Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial

Jorge Monarres
2,440 PointsWhy after installing the display: inline-block; and run the page, it displays "spaghetti carbonara"
Why after installing the display: inline-block; and run the page, it displays "spaghetti carbonara" on the left instead of the middle?
1 Answer

Travis Alstrand
Treehouse Project ReviewerThanks for sharing a snapshot of your workspace! Very helpful!! 😃
So the issue actually isn't the inline-block
that was applied to the "Back to List" button. The issue is that on line 60 of your styles.css
file, the beginning chunk of the h2
styles were removed.
It currently shows this...
header, nav, footer {
text-align: center;
}
font-size: 36px;
}
p, li {
line-height: 2;
}
It should be this instead...
header, nav, footer {
text-align: center;
}
h2 {
text-align: center;
font-size: 36px;
}
p, li {
line-height: 2;
}
That should get you back on track 👍