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 Framework Basics Build a Website with Foundation Building the Video Modal Window

Daniel Hildreth
Daniel Hildreth
16,170 Points

Frameworks Basics How To Hide Modal Until It Is Triggered

I need help with the challenge in the Frameworks Basics course. It asks to give the div a modal class from Foundations to hide the modal until it is triggered. It should be the line with the vidModal class and where I wrote reveal-modal to try it out, with some other coding. It all came back as an error though, so how do I do this?

index.html
<!DOCTYPE html>
<html>

<head>
  <title>Ribbit - A Treehouse Project</title>
  <meta name="viewport" content="width=device-width">
  <link rel="stylesheet" href="css/foundation.min.css">
</head>
<body>

  <!-- Treehouse Content -->
  <div class="row">
    <hr>
    <div class="large-6 hide-for-small columns">
      <h3>Learn how to make this app for yourself</h3>
      <p class="copy-offset">
        We will build on the concepts learned in previous iOS projects to create an app that will allow users to send photo or video messages to other users that will be deleted once viewed.
      </p>
      <div class="row th-copy"> <!-- Nested row -->
        <div class="large-6 columns">
          <img class="rnd" src="img/thumb_ribbit.jpg">
        </div>
        <div class="large-5 pull-1 columns">
          <p><em>Get access to courses for only $24 a month!</em></p>
          <a href="#">Visit Treehouse &raquo;</a>
        </div>
      </div>
    </div>

    <div class="large-6 columns">
      <img class="th-logo" src="img/th-logo.png" alt="logo">
      <p>
        Treehouse provides an extensive library of step-by-step video courses and training exercises that will give you a wide range of in-demand technology skills that will help you land your next dream job.
      </p>
      <div class="row th-copy hide-for-small"> <!-- Nested row -->
        <div class="large-4 columns">
          <img class="circle" src="img/thumb_ben.jpg">
        </div>
        <div class="large-8 columns">
          <p class="teacher-desc th-copy">
            <strong>Ben Jakuben</strong>
            <span>Teacher</span>
          </p>
        </div>
      </div>
    </div>
  </div><!-- End Treehouse Content -->

  <!-- Video Modal -->
  <div id="vidModal reveal-modal">
    <h3>Learn how to make this app!</h3>
    <div>
      <iframe width="420" height="315" src="https://www.youtube.com/embed/hTf0CgRC1_Q" frameborder="0" allowfullscreen></iframe>
    </div>
    <a class="close-reveal-modal">&#215;</a>
  </div><!-- End Video Modal -->

  <script>
  document.write('<script src=' +
  ('__proto__' in {} ? 'js/vendor/zepto' : 'js/vendor/jquery') +
  '.js><\/script>')
  </script>
  <script src="js/foundation.min.js"></script>
  <script>
  $(document).foundation();
  </script>
</body>
</html>

2 Answers

rydavim
rydavim
18,813 Points

You've got the right idea, you just need the reveal-modal flag as a class. The vidModal bit is the ID for the element, so you'll need to add a class to the existing div.

<div id="vidModal" class="reveal-modal">