Tribute Page Using Bootstrap 3.3.7 - FOOTER ISSUES

Hello,
My name is Zac and I’m new to Web Development. I’d be very appreciative if someone helped me with my footer. I believe Bootstrap is doing something funky to my footer. It’s highlighting words that are not a link. Does anyone have a moment to look over it? I’m trying to “disable” any background CSS on my footer. Thank you!!

http://codepen.io/ZHorton/pen/YVyaqd?editors=1100

look at the reference and ensure that the tag is closed. example:
close the footer tag at the beginning after the class.

1 Like

Good catch, I should’ve seen that before submitting. However, even with the closed tag it’s still acting funky. Care to look again?

@zhorton check your a tag for the link to bulbapedia.

you currently have it like this:

    <h2 class="text-center">For all things Pokémon, check out <a href="http://bulbapedia.bulbagarden.net/wiki/Main_Page" target="_blank">Bulbapedia!<a> </h2>
      </div>```

Notice that the ```<a>` after "Bulbapedia!" is an opening a tag not a closing a tag. thats what was messing with your footer.

- Nao
1 Like

Thank you both for your help!