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 trialchannonhall
12,247 PointsText not DISPLAYING!
my text on contact page not showing up
thats my snapshot
please tell me what it is?
2 Answers
Greg Kaleka
39,021 PointsHaha OK, I figured it out, and laughed out loud when I caught it. I've done this exact thing in my own code :).
Actually, your code is fine. There are no errors. In fact, the text is showing up! The problem is, it's white on a white background, so you can't see it. If you don't believe me, got to your page and type Ctrl+A.
You need to change this rule to give your links a different color (or change the background color):
a {
color: white; /* Change this to anything other than white! */
}
Greg Kaleka
39,021 PointsHey Channon,
Looks like you need to move your section
tags in contact.html. Currently your code looks like this:
<section>
</section>
[your code that's not displaying]
You should move your tags to surround this code:
<section>
[your code that's not displaying]
</section>
channonhall
12,247 Pointsi done that but its still not displaying
btw the text that is not displaying is the email and phone number
channonhall
12,247 Pointschannonhall
12,247 PointsThanks you sir
im just 10 years old so i migth find some problems :)
Greg Kaleka
39,021 PointsGreg Kaleka
39,021 PointsHah, I'm nearly 30, and I run into problems all the time :). No worries!