• Erik Ivarsson 16
  • NEWBIE
  • 0 Points
  • Member since 2018

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 3
    Replies
Hi, 

The problem:
"Challenge Not yet complete... here's what's wrong: 
The component is not using the correct font size. Ensure that you added it to the 'Style' section of the component bundle.
"

My current solution: 
campingHeader.cmp
<aura:component>
	<H1>Camping List</H1>
</aura:component>
campingHeader.css (in the bundle)
.THIS {
}
H1.THIS {
    font-size:18pt; 
}
I have probably clicked the "Check challenge" 150 times by now with different "solutions" and changes in my code... 
  • I have tested with a fresh DE org and with a new Trailhead playground. 
  • I have tested with pt and px in the font-size unit
  • I have tested multiple variations of capitalized H1 vs. h1 and spaces here and there 
  • I have cursed more the last day then have done the whole last year... 
Can someone please help me what I am missing? I have tested every solution I could find in the forums but none of them works.. I would just skip this badge unless I needed it for the Platform Developer II certification path.......
Hi, 

The problem:
"Challenge Not yet complete... here's what's wrong: 
The component is not using the correct font size. Ensure that you added it to the 'Style' section of the component bundle.
"

My current solution: 
campingHeader.cmp
<aura:component>
	<H1>Camping List</H1>
</aura:component>
campingHeader.css (in the bundle)
.THIS {
}
H1.THIS {
    font-size:18pt; 
}
I have probably clicked the "Check challenge" 150 times by now with different "solutions" and changes in my code... 
  • I have tested with a fresh DE org and with a new Trailhead playground. 
  • I have tested with pt and px in the font-size unit
  • I have tested multiple variations of capitalized H1 vs. h1 and spaces here and there 
  • I have cursed more the last day then have done the whole last year... 
Can someone please help me what I am missing? I have tested every solution I could find in the forums but none of them works.. I would just skip this badge unless I needed it for the Platform Developer II certification path.......
I cannot for the life of me, figure out what could be wrong with my campingList component markup for the "Create a Simple Camping List Lightning Component" challenge.  This is the markup for campingList.cmp:

<aura:component>
     <ul>
        <li>Bug Spray</li>
        <li>Bear Repellant</li>
        <li>Goat Food</li>
    </ul>
 </aura:component>

Please help me figure out why I am getting the error.  Thank you, Susan