my border is not green,why?
We need to see your code otherwise all anyone can do is guess.
When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>
) to add backticks around text.
See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).
In the future,
If you have a question about a specific challenge as it relates to your written code for that challenge, just click the Ask for Help button located on the challenge. It will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.
Thank you.
i wrote all the right code,no error.but the color is showing blue.
If you do not show us your code, there is absolutely nothing we can do to help.
Look, everything here is looking fine, I don’t know why this is showing blue
Again, without seeing your code, we have absolutely no way of knowing what is going on.
I have attached a picture, but is this showing?
I see no picture. Please copy-paste your code into a post.
How can I attach a picture
Easier if we see your code. My post at the top gives instructions on how to do just that.
<link href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css">
<style>
.thick-green-border {
boder-color: green;
border-width: 10px;
border-style: solid;
}
.red-text {
color: red;
}
{
font-family: Lobster, monospace;
}
p {
font-size: 16px;
font-family: monospace;
}
.smaller-image {
width: 100px;
}
</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 thick-green-border" 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="https://freecatphotoapp.com/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>
You have a typo. Without the correct spelling, your code does not know what to make green.
thank you so much jeremy,you’re so sweet!!! are you on instagram??
roma,can you send the link of your video about how to attach something?
The first reply to you shows how to format your code to put it into the forum.
If you use the Ask for Help button it will automatically add your code, place it into the correct subforum and give you a place where you can specify the issue you’re having. That’s the easiest way.
thankyou so much for explaining
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.