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 trialKevin Izevbigie
354 PointsWhy is it that when I add the facebook image and the twitter image in the footer they appeared side by side?
Why is it that when I add the facebook image and the twitter image in the footer they appeared side by side?
1 Answer
Jenny Veens
10,896 PointsHi Kevin,
Images are not block elements by default. If you want them to be just add
img {
display: block;
}
to the elements in your CSS.
Kevin Izevbigie
354 PointsThanks Jenny :)
Keith Greatz
4,377 PointsKeith Greatz
4,377 PointsHi Kevin, Theres plenty of people that will help you out here, I would try even though Im a noob. First things first, to the right of this page is a heading that says "Tips for asking Questions" check it out. The basics are be specific with your questions, giving examples of your code is a must or else no one knows what you're really talking about.I was confused on the video a little so I'll give you another tip, the ``` key is left to your number 1 key. Edit this post a little and you may get some more help.
Keiffy101