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

JavaScript Treehouse Club: JavaScript Car Sounds Background Color, Margin, and Padding

Emma Dellagatta
Emma Dellagatta
5,181 Points

Edit the CSS stylesheet to change links to have a padding of 10px.

changed to 10px; still not letting me move forward

css/style.css
/* Background Color */
html {
  background: #99E6FF;
}


/* Body */
body {
  margin: 0 auto;
  max-width: 800px;
}


/* Images */
img {
  width: 100%;
}

.car { 
  display:block;
  margin: 40px auto;
  padding: 10
    px;
}


/* Links */
a {
  background: transparent;
  border: 0;
  display: block;
  float: left;
  margin: 0;
  outline: 0;
  padding: 0;
  width: 33%; 
}
index.html
<!DOCTYPE html>
<html lang="en">

  <head>
  <meta name="charset" value="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=0.5, maximum-scale=0.5, minimal-ui">
    <title>Car Sounds</title>

    <!--Style Sheet link-->
    <link rel="stylesheet" type="text/css" href="css/style.css">
  </head>

  <body>

    <!--Car image -->
    <img src="images/bike.png" class="car" alt="car">


    <!--Button-->
    <a href="javascript:bikeBell();"><img src="images/bikeLock.png" alt="key"></a>


    <!--Audio Files-->
    <audio id="bikeBell" src="sounds/bikeBell.mp3" preload="auto"></audio>


    <!--Javascript-->
    <script type="text/javascript">
        function bikeBell() {
            document.getElementById('bikeBell').play();
        }

    </script>

  </body>

</html>
Jason Anders
Jason Anders
Treehouse Moderator 145,858 Points

This is the second post regarding the same question by you an hour apart. Your first post was answered correctly to solve your problem.

Please refrain from posting multiple threads for the same question, especially when the first one was answered. The community is here to help when you are stuck, but it's not meant to have repeated / duplicate questions. If an answer did sufficiently help, you can leave a comment in the original post under the answer given. This is the best way to have someone help you troubleshoot an issue. Only start a new thread for a new and unrelated question / new topic.

Thank you.

Jason ~ Treehouse Community Moderator :dizzy:

1 Answer

You have to chance padding in the bottom of the css.style from 0 to 10px. You changed in the .car but it's in the links part that you need to change it. Just try's and its working for me :)