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

CSS CSS Basics (2014) Basic Selectors Descendant Selectors

Oliver Sewell
Oliver Sewell
16,097 Points

span class id isnt working

my span class id isnt working and changing the style

<span class="title"> Journey through the Sierra Nevada Mountains </span>

.title { color: white; font-size: 26px; }

9 Answers

Andrew K
Andrew K
13,774 Points

Hey Oliver, A class and an id are two different things. If you include your html, I might be able to help you better here, but, from your css, it looks like you want to assign a class (.title) to a span. If you wish to set an id, then you would use the hash mark (#title). You will set these separately with

<span class='title'> 

or

<span id='title'> 

Don't forget to close your span tag. Hope that helps!

looks good to me. maybe check for any other css code that might be over-riding the title class selector?

Oziel Perez
Oziel Perez
61,321 Points

Touche! Although I don't think the code challenge should have any kind of styles that may override others, it's definitely worth noting.

Oliver Sewell
Oliver Sewell
16,097 Points
  <span class="title"> Journey through the Sierra Nevada Mountains </span>
Oliver Sewell
Oliver Sewell
16,097 Points

thanks for the reply andrew ! ive added my html do you want me to post the whole of it?

Andrew K
Andrew K
13,774 Points

Ah, I didn't see that! As far as I can tell, your code is fine. Is this part of a challenge?

Oliver Sewell
Oliver Sewell
16,097 Points

no its part of the code maybe its a bug here is the whole of my code is their anything wrong

<!DOCTYPE html>
<html>
  <head>
    <title>Lake Tahoe</title>
    <link rel="stylesheet" href="css/style.css">
  </head>
  <body> 
    <header id="top" class="main-header">
      <span class="title"> Journey through the Sierra Nevada Mountains </span>
      <h1>Lake Tahoe, California</h1>
    </header>
        <div class="primary-content t-border">
            <p>
                Lake Tahoe is one of the most breathtaking attractions located in California. It's home to a number of ski resorts, summer outdoor recreation, and tourist attractions. Snow and skiing are a significant part of the area's reputation.
            </p>
            <a href="#">Find out more</a>
      <h2>Check out all the Wildlife</h2>
      <p>
        As spawning season approaches the fish acquire a humpback and protuberant jaw. After spawning they die and their carcasses provide a feast for gatherings of <a href="#">mink</a>, <a href="#">bears</a>, and <a href="#">Bald eagles</a>.
      </p>
            <a href="#">See the Wildlife</a>
        </div>

        <div class="secondary-content t-border">
      <h3>From Tents to Resorts</h3>
      <p>
        Lake Tahoe is full of wonderful places to stay. You have the ability to sleep in the outdoors in a tent, or relax like a king at a five star resort. Here are our top three resorts:
      </p>
      <ul>
        <li><a href="#">Lake Tahoe Resort Hotel</a></li>
        <li><a href="#">South Lake Tahoe Resorts</a></li>
        <li><a href="#">Tahoe Ski Resort Lodging</a></li>
      </ul>         
      <h3>Pack Accordingly</h3>
      <p>
        One of most important things when it comes to traveling through the great outdoors is packing accordingly. Here are a few tips:
      </p>
      <ol>
        <li>Bring layers of clothing</li>
        <li>Pack sunscreen</li>
        <li>Carry extra water just in case</li>
        <li>Pack light</li>
      </ol>
        </div>

        <footer id="main-footer" class="t-border">
            <p>All rights reserved to the state of <a href="#top">California</a>.</p>
            <a href="#">Back to top &raquo;</a>
        </footer>
  </body>
</html>
Oliver Sewell
Oliver Sewell
16,097 Points

here is the css

body {
  color: #878787;
  margin: 0;
}

.main-header {
background-color: orange;
}

.title {
color: white;
font-size: 26px;
}

ol li {
background-color: tomato;
  color: white;
  margin-bottom: 5px;
}

h1 {
  font-size: 90px;
  color: white;
}

h2 {
font-size: 53px;

}

h3 {
font-size: 20px;
  color: #48525c;

}

.primary-content {
text-align: center;
}

.t-border {
border-top: 2px solid lightgrey;

}

#main-footer {
padding-top: 60px;
  padding-bottom: 60px;
  border-bottom: solid 10px orange;
}

im not sure what ive typed wrong

Andrew K
Andrew K
13,774 Points

Well, I tried your code and it works fine. When you view it, "Journey through the Sierra Nevada Mountains" is not showing up white and 26px, but everything else is fine?

Oliver Sewell
Oliver Sewell
16,097 Points

yeah everythings fine apart from that , it refuses to change for some reason T__T

Andrew K
Andrew K
13,774 Points

Very odd. I literally just copied and pasted your code into an editor and loaded it from there. Didn't touch a thing, and the span is definitely working in Chrome (I used dev tools to make sure!). Sorry I couldn't be of help!

Specify classes by leading the class name with a period

.title { color: white; font-size: 26px; }

Specify id's by leading the id name with a # sign

#title { color: white; font-size: 26px; }
Sean T. Unwin
Sean T. Unwin
28,690 Points

Try a hard refresh in your browser. There may be a cache issue.

Windows: Ctrl + F5

Mac: Cmd + Shift + R

Oliver Sewell
Oliver Sewell
16,097 Points

thankyou for the help, it didnt work so i just moved on to the next lesson and reloaded the new workspace and everything is working :D

Sean T. Unwin
Sean T. Unwin
28,690 Points

Oh, this was in a workspace?

If you get an issue like this again, save your files, close the workspace and open it again. That should do the trick, so long as there were no issues with the code in the first place.

Have fun and happy coding. :)

Oziel Perez
Oziel Perez
61,321 Points

Although it seems that you have received the help that you need for your challenge or code, I'd like to point out a suggestion to double check that the brackets are always present in your CSS code. Example:

span { color:#FFFFFF; background-color:#DDDDDD;

see what's missing? the last bracket at the end. I just point this out because, when I started, a lot of the times this would happen to me and I didn't know why my code wasn't working, and it turned out to be a missing bracket (or a missing semicolon after a value). Keep this in mind as part of your debugging checklist in future projects.

Oliver Sewell
Oliver Sewell
16,097 Points

thanks oziel , yeah sometimes i always forget the closing brackets i need to write both at the start like the tutors , thankyou