Hello, I can not pass it because it says your browser zoom should be at %100. but it is already. I close and restart it but I don’t know how to fix it.
It’s not telling you that your browser isn’t at 100%. That’s just one thing that can prevent the tests from passing.
Your image should be 100 pixels wide. Browser zoom should be at 100%. this is the error message, and I know that it is 100px, or I am missing something since I focused a lot for screen problem…
What browser are you using? Is it the most recent version?
Chrome and it is updated…
Can you please include your code (formatted, not a screenshot) and a link to the challenge?
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
.red-text {
color: red;
}
h2 {
font-family: Lobster, monospace;
}
.smaller-image {
width: 100px;
}
p {
font-size: 16px;
font-family: monospace;
}
</style>
<h2 class="red-text">CatPhotoApp</h2>
<main>
<p class="red-text">Click here to view more <a href="#">cat photos</a>.</p>
<a href="#"><img class="smaller-image" src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
<div>
<p>Things cats love:</p>
<ul>
<li>cat nip</li>
<li>laser pointers</li>
<li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
<li>flea treatment</li>
<li>thunder</li>
<li>other cats</li>
</ol>
</div>
<form action="/submit-cat-photo">
<label><input type="radio" name="indoor-outdoor" checked> Indoor</label>
<label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>
<label><input type="checkbox" name="personality" checked> Loving</label>
<label><input type="checkbox" name="personality"> Lazy</label>
<label><input type="checkbox" name="personality"> Energetic</label><br>
<input type="text" placeholder="cat photo URL" required>
<button type="submit">Submit</button>
</form>
</main>
Assuming that this is the challenge “Size Your Images” - when I put your code above into the challenge, it passes all tests.
I will try to pass this one in other browser than, thank you though