In project “Junction”, when working in the .supporting div, I’m having a hard time matching the demo site. When I do an inspect element on the demo site the following code exists for the css:
When I use that in the editor none of the attributes take on those properties. However, if I move the color and text-align attributes to only the .supporting class, they work. What is it about using .supporting and .col-md-4 together in the the editor that prevents it from working, even though that is what was used on the demo version of the site as shown by inspecting the element?
I think you need to delete the space in between .supporting and .col-md-4 to make it work. Here’s a website that could help you figure it out…https://css-tricks.com/multiple-class-id-selectors/Hope it helps!
Have you managed to solve this or do you still need help ?
I don’t really understand what the problem is can you please explain and paste in all of your HTML & CSS…
Thanks for checking on this. The following is how I had to do my html and css to get it to work. However, you’ll notice that if you inspect the elements on the provided demo site and compare to my code, they do do not match. I had to change where I place some of the attributes or the design would not respond correctly.
HTML
<body>
<div class="header">
<div class="container">
<div class="row">
<img class="logo" src="https://s3.amazonaws.com/codecademy-content/projects/junction/logo.svg">
<ul class="nav">
<li>About</li>
<li>Blog</li>
<li>Help</li>
<li>Contact</li>
</ul>
</div>
</div>
</div>
<div class="jumbotron">
<div class="container">
<h1>Meet Junction</h1>
</div>
</div>
<div class="supporting">
<div class="container">
<div class="row">
<div col-md-4>
<img src="https://s3.amazonaws.com/codecademy-content/projects/junction/read.svg" height="128" width="128">
<h2>Read</h2>
<p>Discover new stories and follow your favorite writers.</p>
</div>
<div col-md-4>
<img src="https://s3.amazonaws.com/codecademy-content/projects/junction/write.svg" height="128" width="128">
<h2>Write</h2>
<p>Create stories about our world, or entirely new worlds.</p>
</div>
<div col-md-4>
<img src="https://s3.amazonaws.com/codecademy-content/projects/junction/talk.svg" height="128" width="128">
<h2>Talk</h2>
<p>Join the conversation by talking with your favorite writers and your fans.</p>
</div>
</div>
</div>
</div>
<div class="download">
<div class="container">
<a href="#" class="btn btn-default">Join</a>
</div>
</div>