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

HTML How to Make a Website Creating HTML Content Include External CSS

Kevin Izevbigie
Kevin Izevbigie
354 Points

Why 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?

Keith Greatz
Keith Greatz
4,377 Points

Hi 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

1 Answer

Jenny Veens
Jenny Veens
10,896 Points

Hi 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.