Trouble in page module final assessment


Having problem in final assessment in point number 12. Not able to understand what they are asking.

Hi Sneha,

The parts you are missing are the CSS customizations:

  • Inspect the Answer text of the FAQ and confirm that it follows the rule font-family: "Lato", sans-serif; .
  • Go back to Page Builder and update the .title class to include the font-family property to match the Answer font family.
  • Update the .title font-weight from “normal” to “bold”
  • Update the CTA Link color by modifying the .cta class (within the &-container brackets, signifying the .cta-container class) to have color #c81500.

You’ll need to update these in the CSS of your Three Column List in order to pass the module.

Hi,
Updating this in the css-
.cta {
font-size: 1em;
text-decoration: none;

&-container {
display: flex;
align-items: flex-end;
flex: 1;
color: #c81500;
}
}
But not working means their it successfully update but while submitting assessment it is showing error.

Instead of &-container as a sub-property, try doing it as two separate top-level properties (have both .cta{} and .cta-container{} - that worked for me! Both are technically right but it looks like that’s what the grading is looking for.