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 Adding Pages to a Website Build the Contact Page

the links are there but I cant see them

I followed the steps and on my page the links are there but you cant see them. I am assuming the colour (Canadian lol) are white but I don't know how to change it.

1 Answer

Matthew Lang
Matthew Lang
13,483 Points

Hey! When text is the same colour as its background, you are usually able to highlight it which will reveal its colour against a blue selection. This is a good way for testing if text is really there. Or, you can use 'view page source' to see if the text is in fact there.

To change the colour of text, use the CSS 'color' property. Take note that it MUST be spelled 'color', and not the other spelling of 'colour'.

It can be used like this:

h1 {
    color: white;
}

/* Anchor element aka link, is by default a blue-ish colour I believe */ 
a {
    color: white;
}