CSS Flexbox: Add Flex Superpowers to the Tweet Embed Issue

Tell us what’s happening:

For some reason, when the program is checking my work, it fails to see I have added display: flex; to ‘header .follow-btn’. I have shown this to someone else, and they agree with me, and can;t see anything wrong with it. I hope someone can either fix this, or tell me my mistake that I fail to see.
Your code so far


<style>
body {
  font-family: Arial, sans-serif;
}
header {
  display: flex;
}
header .profile-thumbnail {
  width: 50px;
  height: 50px;
  border-radius: 4px;
}
header .profile-name {
  display: flex;
  margin-left: 10px;
}
header .follow-btn {
  display: flex;
  margin: 0 0 0 auto;
}
header .follow-btn button {
  border: 0;
  border-radius: 3px;
  padding: 5px;
}
header h3, header h4 {
  display: flex;
  margin: 0;
}
#inner p {
  margin-bottom: 10px;
  font-size: 20px;
}
#inner hr {
  margin: 20px 0;
  border-style: solid;
  opacity: 0.1;
}
footer {
  display: flex;
}
footer .stats {
  display: flex;
  font-size: 15px;
}
footer .stats strong {
  font-size: 18px;
}
footer .stats .likes {
  margin-left: 10px;
}
footer .cta {
  margin-left: auto;
}
footer .cta button {
  border: 0;
  background: transparent;
}
</style>
<header>
<img src="https://freecodecamp.s3.amazonaws.com/quincy-twitter-photo.jpg" alt="Quincy Larson's profile picture" class="profile-thumbnail">
<div class="profile-name">
  <h3>Quincy Larson</h3>
  <h4>@ossia</h4>
</div>
<div class="follow-btn">
  <button>Follow</button>
</div>
</header>
<div id="inner">
<p>I meet so many people who are in search of that one trick that will help them work smart. Even if you work smart, you still have to work hard.</p>
<span class="date">1:32 PM - 12 Jan 2018</span>
<hr>
</div>
<footer>
<div class="stats">
  <div class="Retweets">
    <strong>107</strong> Retweets
  </div>
  <div class="likes">
    <strong>431</strong> Likes
  </div>
</div>
<div class="cta">
  <button class="share-btn">Share</button>
  <button class="retweet-btn">Retweet</button>
  <button class="like-btn">Like</button>
</div>
</footer>

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 13310.59.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.84 Safari/537.36.

Challenge: Add Flex Superpowers to the Tweet Embed

Link to the challenge:

Note: I just tried copying and pasting the solution in, and it still didn’t work, so there must be an error.

Hello @Endamarch! As shown in the lesson, you have to:

Add the CSS property display: flex to all of the following items - note that the selectors are already set up in the CSS:
header , the header’s .profile-name , the header’s .follow-btn , the header’s h3 and h4 , the footer , and the footer’s .stats .

Which means you have to add this CSS property display: flex to the header and to all of the following classes the header’s .profile-name , the header’s .follow-btn , the header’s h3 and h4 , the footer , and the footer’s .stats, as you can see there’s a space for you to write in that CSS property .

In general, it should look like this:

– Add display: flex; to the header:

header {
    display: flex;
}

– Add display: flex; to the header’s .profile-name :

header .profile-name {
    display: flex;
    margin-left: 10px;
}

– Add display: flex; to the header’s .follow-btn:

header .follow-btn {
    display: flex;
    margin: 0 0 0 auto;
}

– Add display: flex; to the header’s h3 and h4:

header h3, header h4 {
    display: flex;
    margin: 0;
}

– Add display: flex; to the footer:

footer {
    display: flex;
}

– Add display: flex; to the footer’s .stats:

footer .stats {
    display: flex;
    font-size: 15px;
}

I hope this helped :smiley:.

Hi @waelbouhaya,

Yeah I’ve done all of that, but when I submit it it ticks all the objectives, except for the one about header. follow-btn. The first person I talked to also said this but I sent a picture of it, which is attached below.

As I said I also copy and pasted the solution in but it still turned out the same result, which really confuses me.

Thank you for replying though!
Endamarch

@Endamarch Can you send a picture of your code instead of the errors.

`
body {
font-family: Arial, sans-serif;
}
header {
display: flex;
}
header .profile-thumbnail {
width: 50px;
height: 50px;
border-radius: 4px;
}
header .profile-name {
display: flex;
margin-left: 10px;
}
header .follow-btn {
display: flex;
margin: 0 0 0 auto;
}
header .follow-btn button {
border: 0;
border-radius: 3px;
padding: 5px;
}
header h3, header h4 {
display: flex;
margin: 0;
}
#inner p {
margin-bottom: 10px;
font-size: 20px;
}
#inner hr {
margin: 20px 0;
border-style: solid;
opacity: 0.1;
}
footer {
display: flex;
}
footer .stats {
display: flex;
font-size: 15px;
}
footer .stats strong {
font-size: 18px;
}
footer .stats .likes {
margin-left: 10px;
}
footer .cta {
margin-left: auto;
}
footer .cta button {
border: 0;
background: transparent;
}

Quincy Larson's profile picture

Quincy Larson

@ossia

Follow

I meet so many people who are in search of that one trick that will help them work smart. Even if you work smart, you still have to work hard.

1:32 PM - 12 Jan 2018
107 Retweets
431 Likes
Share Retweet Like
`

That’s my code for reference.

Just to chime in here:

Do you happen to have any browser extensions enabled? Ad-blockers often disable the Twitter follow button on this challenge.

Hi, sorry for the late reply.

At the time I did have an ad blocker enabled, and I have just tried it with the ad blocker disabled and it worked!

Thank you so much for your help, I have been stuck on it for sooooo long!

1 Like