Step 79 responsive web design cafe menu

Tell us what’s happening:
how do i resolve step 79. please help me. thank you

Your code so far

WARNING

The challenge seed code and/or your solution exceeded the maximum length we can port over from the challenge.

You will need to take an additional step here so the code you wrote presents in an easy to read format.

Please copy/paste all the editor code showing in the challenge from where you just linked.

Replace these two sentences with your copied code.
Please leave the ``` line above and the ``` line below,
because they allow your code to properly format in the post.

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.67 Safari/537.36

Challenge: Step 79

Link to the challenge:

Please post your code, it is difficult to help you without your code.

here is my code

body {

  background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg);

  font-family: sans-serif;

  padding: 20px;

}

h1 {

  font-size: 40px;

}

h2 {

  font-size: 30px;

}

.established {

  font-style: italic;

}

h1, h2, p {

  text-align: center;

}

.menu {

  width: 80%;

  background-color: burlywood;

  margin-left: auto;

  margin-right: auto;

  padding: 20px;

  max-width: 500px;

}

hr {

  height: 2px;

  background-color: brown;

  border-color: brown;

}

.bottom-line {

  margin-top: 25px;

}

h1, h2 {

  font-family: Impact, serif;

}

.item p {

  display: inline-block;

  margin-top: 5px;

  margin-bottom: 5px;

  font-size: 18px;

}

.flavor, .dessert {

  text-align: left;

  width: 75%;

}

.price {

  text-align: right;

  width: 25%

}

/* FOOTER */

 .footer {

  font-size:14px;

}

You have a .footer class selector, it should be a footer element selector.

3 Likes

Great, I have passed the challenge. Thanks for your help

1 Like

The correct answer is:
footer {
font-size:14px;
}
/* if you add .footer that it change class selector */

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.