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!
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

Srdjan Cestic
6,855 PointsCenter image
Why my image isn't on center? Where is mistake? https://w.trhou.se/d58x52m6h2
Thanks in advance :)
1 Answer

rydavim
18,811 PointsLooks like you've got some floats interfering with the secondary header layout. Try adding a clear: both;
to your .second-header
class.
.second-header {
clear: both; /* This should prevent your floats from messing up your second header. */
}
Let me know if that doesn't do it for you. Happy coding! :)
Srdjan Cestic
6,855 PointsSrdjan Cestic
6,855 PointsThanks for help, you remind me to think about clearing floats! :)