challenge 78
run it and it should not be correct
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
h2 {
font-family: Lobster, Monospace;
}
.thick-green-border {
border-color: green;
border-width: 10px;
border-style: solid;
border-radius: 50%;
}
</style>
<div class="container-fluid">
<div class="row">
<div class="col-xs-8">
<h2 class="text-primary text-center">CatPhotoApp</h2>
</div>
<div class="col-xs-4">
<a href="#"><img class="img-responsive thick-green-border" src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back. "></a>
</div>
</div>
<img src="https://bit.ly/fcc-running-cats" class="img-responsive" alt="Three kittens running towards the camera. ">
<div class="row">
<div class="col-xs-4">
<button class="btn btn-block btn-primary"><i class="fa fa-thumbs-up"></i> Like</button>
</div>
<div class="col-xs-4">
<button class="btn btn-block btn-info"><i class="fa fa-info-circle"></i> Info</button>
</div>
<div class="col-xs-4">
<button class="btn btn-block btn-danger"><i class="fa fa-trash"></i> Delete</button>
</div>
</div>
<p>Things cats <span class="text-danger">love:</span></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>
<form action="/submit-cat-photo">
<div class="row">
<div class="col-xs-6">
<label><input type="radio" name="indoor-outdoor"> Indoor</label>
</div>
</div>
<div class="col-xs-6">
<label><input type="radio" name="indoor-outdoor"> Outdoor</label>
</div>
<label><input type="checkbox" name="personality"> Loving</label>
<label><input type="checkbox" name="personality"> Lazy</label>
<label><input type="checkbox" name="personality"> Crazy</label>
<input type="text" placeholder="cat photo URL" required>
<button type="submit">Submit</button>
</form>
</div>


@zhouchenzc0824 thank you for reporting this issue
The test Nest all of your radio buttons inside one div with the class row. is not performing correctly.
The code for this challenge is here
Please be sure to follow CONTRIBUTING.md
Happy Coding!
Hey @Bouncey I'll work on this issue if it's allright with you.
:+1:
On 8 January 2017 at 00:10, Alex Padilla notifications@github.com wrote:
Hey @Bouncey https://github.com/Bouncey I'll work on this issue if it's
allright with you.—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/FreeCodeCamp/FreeCodeCamp/issues/12426#issuecomment-271119453,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ARtk5llEc941liguz1Te_CzpH-O83sM4ks5rQClZgaJpZM4LdjPy
.
Sorry first time contributor here....I'm having an issues with the app itself not the fix. I'm pretty sure I know what the fix should be. I've been trying since last night, but I really don't know what to do. Here's what happens
I set up the app, and it runs fine, but if I run "node seed" at any time - with or without - changes to the challenges code it will break the app. The site will display "something went wrong", and the console will say that can't read value null.
What I've tried...
I tried restarting the whole process from the cloning stage 2 times, and both times the app breaks when I use node seed. (AFTER I set up everything else in the project. So I'm not skipping steps or anything)
I tried dropping the database via the mongo console, and then doing "node seed". This didn't work either.
I've tried node seed with and without changes to the local code, and nothing.
What am I doing wrong? I pretty much know how to apply the fix, but I just can't get past this block. And at this point I have no idea what I'm looking for either.
@alexr101 thanks a lot for helping us out, why don't you jump on the Contributors Chat room, and hit us up, we will love to sort your issues with the setup.
Thanks @raisedadead I was able to fix the problem. I think it had to do with mongo's user permissions.
I sent a pull request.
Most helpful comment
Hey @Bouncey I'll work on this issue if it's allright with you.