This forum is now read-only. Please use our new forums! Go to forums

banner
Close banner
0 points
Submitted by Roland
over 9 years

6/10 Won´t let me set the font family of the h1 element

I really don’t know what i´m doing wrong, but every time i try to run and save i get this error: “Oops, try again. Set the font-family of the h1 element inside

..
to ‘Shift’, sans-serif”

Could someone please help me out? Here´s my code:

link href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/shift.css" rel="stylesheet">

main.css:

.jumbotron h1 {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    font-family: 'Shift', sans-serif;
}

Answer 53de59a3631fe906cc0029a3

7 votes
Best answer

Permalink

  1. check to see that you still have the link to your main.css file in the head of your index.html - you need that
  2. check to see if you have a link to font.css - you don’t want that, it was just an example
  3. check to see that you still have your .nav a, .jumbotron and .jumbotron p rules in your main.css file - you need all of those
points
Submitted by Judy
over 9 years

15 comments

ToddBoothbee over 9 years

Good orderly checklist of possible mistakes. Nice and logical: I included example of font.css when I shouldn’t have.

Judy over 9 years

Thank you Todd, I’m glad it helped.

ifelajulo fasina over 9 years

pls how did you go through in this section

.jumbotron h1 { color: #fff; font-size: 48px; font-weight: bold; font-family: ‘Shift’, sans-serif; main css is giving me problems

Judy over 9 years

@ifelajulo, did you work through the three steps on the check list yet?

ifelajulo fasina over 9 years

yes i did,i wld go through them again

Maysa123 over 9 years

Thanks for the help, I shouldn’t have included the font.css example in the head tag.

anirudhrajendran over 9 years

I have the same problem I double checked my codes but still i am getting error.Please Help

Judy over 9 years

@anirudhrajendran, would you like us to double check your code?

anirudhrajendran over 9 years

@AlbionsRefuge, Here is my code: Index.html:

main.css: .jumbotron h1 { color: #fff; font-size: 48; font-weight:bold; font-family: “Shift”,sans-serif;

Judy over 9 years

@anirudhrajendran, this link has a mistake in it: http://s3.amazonaws.com/codeacademy-content/courses/ltp/css/Shift.css You can test that by trying to visit it with your web browser.

Adam Daniel Haskins over 9 years

I had to go back and copy my styles from section 3. why can’t anyone say it like that? they just say you need those styles but good luck remembering xD

tarabelle123 about 9 years

Can someone Check my main.css code:?

.jumbotron h1{ color:#fff; font-family:’shift’, sans-serif; font-size:48px; font-weight:bold; }

Does this look correct?

Judy about 9 years

Hi tarabelle123, what you’ve written there looks just fine. You should have more than that though.

Codehtcss almost 9 years

Oops, try again. Inside the head element add the link element for the custom font. Why am I getting this error? Is there a mistake?

Judy almost 9 years

Something seems to have happened with this exercise. I’ve asked a few others to look into it to confirm that they are seeing the same thing we are and then we’ll see about getting a bug report put in.

Answer 53fae97680ff3306720089a5

32 votes

Permalink

6/10 h1 element error solved just for help

<link href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/shift.css"  rel="stylesheet">
<link href="main.css" rel="stylesheet">
points
Submitted by bazokhan
over 9 years

21 comments

Emily Z over 9 years

I have been trying to fix the problem based on the instructions—even switched laptops and with different browsers…nothing was working… and I was frustrated… So I copied and pasted your code above.. And it worked! After about 3 days’ of trying different ways. The only difference I can see is the space before rel=”stylesheet” and I switched the position of the two line of codes just like what you listed here. My questions: were those the issues? someone said position of the links do matter, is this the right order? I tried copy the url of http://s3.amazonaws.com/codecademy-content/courses/ltp/css/shift.css“ rel=”stylesheet” into browser before today, and there was always an error too. Thank you!

Pszi over 9 years

It helped me too to copy the same code above, it seems like i was only missing an > at the end of the second stylesheet but for for a love of me I could not see it before having the two codes side-by-side

alipow over 9 years

This code allows you to complete the lesson. Thanks

glowwormkl over 9 years

so there are two spaces before “rel=”stylesheet”>? (it allowed me to complete the lesson). This seems to be an error, no?

Jarrad Paul Laursen over 9 years

that was stressful. thanks for fixing that up man :)

Courtney over 9 years

Yeah, that’s a bit weird… so is the two spaces thing a bug (I’m assuming so)?

Ciramirez1 over 9 years

Great help, thanks. It is so frustrating when you think you have done everything it is asking for and you still can not get it right. They should have a window showing the answer.

Judy over 9 years

Hi Mauricio, is probably causing your error. You don’t have access to a file called font.css

Great answer that can solve this error.

Baelen almost 9 years

I have no idea why bazokhan’s index.html code worked where mine didn’t. I couldn’t see the difference, even after playing with the spaces. But worked it did. It doesn’t make sense, but cut and paste the code so you can move forward.

Israel almost 9 years

It’s really funny to me though…I tried all you guys have written down here and I JUST CAN’T MOVE ON! I think this is a bug and I don’t know how it worked for you guys but for me, I’m stucked. This is really annoying…

Judy almost 9 years

Hi Santao, Something seems to have happened with this exercise. I’ve asked a few others to look into it to confirm that they are seeing the same thing we are and then we’ll see about getting a bug report put in.

Judy almost 9 years

The problem has been fixed, please try again.

ms_dsantana almost 9 years

I keep getting this error message and Ive tried fixing multiple ways, including different browsers.

Oops, try again. Set the font-family of the h1 element inside

..
to ‘Shift’, sans-serif

youngabel almost 9 years

Ok just figured this out. In the card section when it mentions adding these, it includes a backslash before the closing >. So, the code should actually read:

(note the />) (once more note the />) This should allow you to complete this question!! :D
buttaflymaiden over 8 years

WOW that worked THANK YOU bazokhan

landafire over 8 years

I fumbled with this for hours…..THANK YOU SO MUCH Youngabel!

YazeedShaker over 8 years

Thank you so much !

Yosi Gom over 8 years

worked!

Matt over 8 years

safe

Answer 545a6ef1631fe92ff2004db1

8 votes

Permalink

Hello. I have same problems, I can not get past 6th step.

My index.html:

<html>
  <head>
    <link href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/shift.css" rel="stylesheet">
  </head>
  
  <body>
    <div class="nav">
      <div class="container">
        <ul>
          <li><a href="#">Airbnb logo</a></li>
          <li><a href="#">Browse</a></li>
        </ul>
        <ul>
          <li><a href="#">Sign Up</a></li>
          <li><a href="#">Log In</a></li>
          <li><a href="#">Help</a></li>
        </ul>
      </div>
    </div>

    <div class="jumbotron">
      <div class="container">
        <h1>Find a place to stay.</h1>
        <p>Rent from people in over 34,000 cities and 192 countries.</p>
      </div>
    </div> 

    <div class="learn-more">
      <div>
        <div>
      	  <div>
            <h3>Travel</h3>
            <p>From apartments and rooms to treehouses and boats: stay in unique spaces in 192 countries.</p>
            <p><a href="#">See how to travel on Airbnb</a></p>
          </div>
          <div>
            <h3>Host</h3>
            <p>Renting out your unused space could pay your bills or fund your next vacation.</p>
            <p><a href="#">Learn more about hosting</a></p>
          </div>
          <div>
            <h3>Trust and Safety</h3>
            <p>From Verified ID to our worldwide customer support team, we've got your back.</p>
            <p><a href="#">Learn about trust at Airbnb</a></p>
          </div>
        </div>
      </div>
    </div>
  </body>
</html>

And my main.css:

.nav a {
    color: #5a5a5a;
    font-size: 24px;
    font-weight: bold;
    padding-top: 14px;
    padding-bottom:14px;
    padding-left: 10px;
    padding-right:10px;
    text-transform: uppercase;
}
.jumbotron {
    background-image:url('http://goo.gl/04j7Nn');
    height: 500px;
}
.jumbotron h1 {
    color:#fff;
    font-size:48px;
    font-weight: bold;
    font-family:'Shift', sans-serif;
}
.jumbotron p {
    color:#fff;
    font-size:20px;
}
points
Submitted by tomazgo
over 9 years

2 comments

Judy over 9 years

You’ve lost this link:

Michele Walden over 8 years

Thanks AlbionsRefuge; I added It Works!!

Answer 53fa2cd97c82ca67f900761c

3 votes

Permalink

Still got the same problem?

If you tried all of the suggestions here (checked all rules were still in place, switched out the”broken” link given in the course instruction panel, and changed the css font rule to lower-case s for ‘Shift’). One at a time, of course (don’t change to lower-case s, it worked earlier in the course, so it shall work to the end, I assume).

I still had the same error message. My solution?

1.)Chromium Web Browser (or I probably could have updated Opera or Firefox, but I’m breaking in a new OS and didn’t want to muddle through figuring that out…)

2.)PLACEMENT of the code…I’m not sure ‘cause I got lost and couldn’t go back and test the theory out, but I recall actually SEEING the changes at one point, and clicked the next button and got the same error! So I stuck it at the TOP of the other CSS rules already in place, and that worked!

And the link given in the instructions is NOT broken. It may not be PUBLICLY accessible, except through this course…?

So…Update or switch browsers, and Chromium is my pick, for now…and try placing it as the first CSS rule.

Have a GREAT day!

points
Submitted by WolfieLee
over 9 years

3 comments

Aquathros almost 9 years

I had the same problem. I tried all of the solutions in this thread and yours worked. I was in FireFox originally, then went to Chromium. I clicked “Save and Submit” and it was accepted. Thank you.

Ryan almost 9 years

Worked for me in Firefox. Don’t know why it says to place the code inside

Adrianna D. almost 9 years

Mine wouldnt go through either(I use firefox) and i just put the above the font.css and the main.css and it finally went through! lol

Answer 540f67eb282ae3e1bc0017ba

2 votes

Permalink

Hi am having a similar problem with the same question i have the same code but a different error “Oops, try again. Inside the head element add the link element for the custom font”

my code index.html

<head>
    <link href="main.css" rel="stylesheet  ">
<link href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/shift.css"  rel="stylesheet">
  </head>

main.css

.jumbotron h1 {
    color: #fff;
    font-family: 'shift', sans-serif;
    font-size: 48px;
    font-weight:bold;
}
points
Submitted by tagMaster13212
over 9 years

2 comments

tagMaster13212 over 9 years

me aging for some how some of my code is missing in my question even low its there when try to edit it,

Anyways here is the missing code index.html

Judy over 9 years

@tagMaster, if you take those extra spaces that you inserted in here rel=”stylesheet”> then you should be good.

Answer 543cc5e9631fe96b8c0011db

1 vote

Permalink

Hi Roland & all,

If you still have the curiosity left for this question, then I think, the problem i have identified in the following is change the position of font-family:’Shift’,sans-serif.

.jumbotron h1 { color: #fff; font-size: 48px; font-weight: bold; font-family: ‘Shift’, sans-serif; }

i.e use this

jumbotron h1 { color: #fff; font-family:”Shift”,sans-serif; font-size: 48px; font-weight: bold }

And it worked. The problem could be two, fold i.e also the one pointed out by others with the links.

points
Submitted by kitti123
over 9 years

5 comments

JoeyHe about 9 years

It worked. Thank you!

nghani over 8 years

it worked, thanks!

Jenna-Michelle over 8 years

Thank you!

swapnil meshram over 8 years

i m getting error.. plz help me

Judy over 8 years

HI swapnil meshram, have you already posted your code where I can see it?

Answer 5412123580ff33e1bb000913

0 votes

Permalink

@tagMaster, here is what I see when I start a new question. I use that “Ask question” button at the bottom to submit the question.

http://i.imgur.com/iR3l346

points
Submitted by Judy
over 9 years

6 comments

tagMaster13212 over 9 years

Hay thanks for replying maybe you can help me am having the same problem as Roland. I have the same code for the html and the css but am getting the error.

Oops, try again. Inside the head element add the link element for the custom font. I have tried all the possabile solutions suggested here but none of them are working. Pleas help as its driving me crazy and i want to finish the course so I can move on to PHP and Javascript

Judy over 9 years

Did you already take my previous advice about removing the extra spaces in “stylesheet “?

tagMaster13212 over 9 years

yes I did but it did’t work so I reset the code an did the task aging taking on board your advice and it’s working now thanks for your help.

Judy over 9 years

Great, glad you’ve got that one sorted!

tagMaster13212 over 9 years

Hay thought we had it sorted but earlier it worked so I went and did it on my PC but am getting a different error. Oops, try again. Set the font-family of the h1 element inside

..
to ‘Shift’, sans-serif

my code

.jumbotron h1 { color: #fff; font-size: 48px; font-weight:bold; font-family: ‘shift’, sans-serif; }

it also says in the css heading (h1) should not be qualified.

Judy over 9 years

The “heading should not be qualified” is a suggestion, not really an error. You can Google for it and someone out there will explain it better than I can. Did you look back at my very first response in this thread, the one where I listed 3 things to check?

Answer 54282eaa80ff334d7a000dbe

0 votes

Permalink

main.css

jumbotron h1 {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    font-family: 'Shift', sans-serif;
points
Submitted by Sudarshan Chillale
over 9 years

Answer 544931588c1cccc8460034dc

0 votes

Permalink

Guys, don’t forget the colon “;” at the end of each line.

points
Submitted by Gabriel Jiabei Gao
over 9 years

1 comments

Sneha Shrotri almost 9 years

thanks. it worked

Answer 544ca6f3631fe93472000aff

0 votes

Permalink

This is my code:

.jumbotron h1 { color:#fff; font-family:’Shift’,sans-serif font-size:48px; font-weight:bold; } Can anyone tell me what is wrong????

points
Submitted by Matt
over 9 years

2 comments

Judy over 9 years

Hi Matt, it looks like you are missing a semicolon at the end of your font-family line.

surfweb over 8 years

there is no “;” in this line font-family:’Shift’,sans-serif

Answer 54ab10b4937676f68900ab95

0 votes

Permalink

Hey! check your HTML link. 1 and lower case L are the same character.

points
Submitted by errtu2
over 9 years

1 comments

tomoliversmith over 9 years

You diamond! I thought it was a number one but it was a lower case L!!! So frustrating!

Answer 54ab136fd3292f6008009df3

0 votes

Permalink

I did as AR suggested 4 months ago and completely removed the link to font css from the heading, then it worked.

points
Submitted by Robert Connelly
over 9 years

Answer 54e39d849113cb05b20008b7

0 votes

Permalink

I dont know why, but i fix my problem (the same of all of you) setting the zoom of the browser to 100. (just press ctrl + 0).

Good luck

points
Submitted by Aldo Santarelli
about 9 years

Answer 559ff321d3292f63070004a8

0 votes

Permalink

None of these suggestions worked for me.

BUT, what DID work as to skip lesson 6, finish the rest of the lessons in the course, then go out the main page. It showed that I had completed the lesson 96%. When I clicked on that, it took me back to the incomplete Lesson 6. I just clicked “Submit”, and it worked!

Definitely a bug in the system, as I ensured that my coding was correct.

points
Submitted by Brian Spotts
almost 9 years

Answer 55b1567d76b8fe860500025d

0 votes

Permalink

still getting this error. I’ve tried the placement of the font family as well as switiching browsers. here’s my code:

<!DOCTYPE html>
<html>
  <head>
    <link href="https://s3.amazonaws.com/codecademy-content/courses/ltp/css/shift.css" rel="stylesheet">
    <link href="main.css" rel="stylesheet">
  </head>


.jumbotron h1 {   
    color; #fff;
    font-family:"Shift",sans-serif;
    font-size: 48px;
    font-weight: bold;
    }
points
Submitted by prospect82
over 8 years

9 comments

Judy over 8 years

Hi prospect82, I see a semicolon after the word color, that should be a colon.

prospect82 over 8 years

thanks. I corrected that but still the same issue

Judy over 8 years

Alright, maybe there is something in the code that I haven’t seen yet, could you post all of your CSS file please?

prospect82 over 8 years

.nav a { color: #5a5a5a; font-size: 11px; font-weight: bold; padding-bottom: 14px; padding-left: 10px; padding-right: 10px; padding-top: 14px; text-transform: uppercase; }

.jumbotron { background-image:url(‘http://goo.gl/04j7Nn‘); height: 500px;

.jumbotron h1 {
color: #fff; font-family: ‘Shift’, sans-serif; font-size: 48px; font-weight: bold; }

.jumbotron p {
    color: #fff;
    font-size: 20px; }
Judy over 8 years

Thanks prospect82, now I can see that your .jumbotron { … } is missing its }

Iry Anthony over 8 years

you are using “double” instead of ‘single’ quotations on your “Shift”… instead of ‘Shift’

Judy over 8 years

Hi Iry, either type of quotes should be accepted.

prospect82 over 8 years

thx guys I was missing the brackets. Thanks greatly.

Iry Anthony over 8 years

ooohhh okay.

Answer 55ba4f2d9113cbe2450001a9

0 votes

Permalink

Try to copy the code from instruction and paste it In index.html inside the head element I hope its help you. Please let me know if its solve your problem.

points
Submitted by mycodelearn
over 8 years

Answer 55bd1bf2937676c33e0002a4

0 votes

Permalink

I had the same problem as everyone above, with the code entered correctly, but the validator not accepting it. I am using Safari. Albion, can you please fix this problem for Safari? Thanks so much. Have a great day!

points
Submitted by West
over 8 years

1 comments

Judy over 8 years

Hi WestKraemer, if I could fix anything I would, but I’m just here to help sort out questions. Have you posted your code anywhere yet? I need to see ALL of your main.css file and ALL of the HEAD element in your index.html file.

Answer 55c3b378e39efee343000588

0 votes

Permalink

Still can’t get past 6. I’ve tried different web browser. Putting the http link above the main and font links. I’ve tried changing the shift in the link to lower and uppercase while changing this Shift, sans to match it. Nothing works. Can someone please help this is getting annoying at this point. Thanks.

    <html>
  <head>
    
      <link href="http://s3.amazonaws.com/codeademy-content/courses/ltp/css/shift.css" rel="stylesheet">
    <link href="font.css" rel="stylesheet">
   
     <link href="main.css" rel="stylesheet">
  

  </head>


    .nav a {
    color : #5a5a5a;
    font-size: 11px;
    font-weight : bold;
    padding-top : 14px;
    padding-bottom : 14px;
    padding-left : 10px;
    padding-right : 10px;
    text-transform : uppercase;
}
    
.jumbotron { 
        background-image : url('https://goo.gl/04j7Nn');
        height: 500px
}

.jumbotron h1{
            color : #fff;
            font-size : 48px;
            font-weight: bold;
            font-family:'shift',sans-serif;
            
}

.jumbotron p{
            color: #fff;
            font-size: 20px;
}
points
Submitted by fakamo
over 8 years

1 comments

Judy over 8 years

Hi fakamo, that link to font.css is likely the problem. There is no font.css file available to you in this exercise.

Answer 55f9a702937676a1170002f7

0 votes

Permalink

Hi guys, when ever i press save and submit is says “Oops, try again. Inside the head element add the link element for the custom font. Please Help! Thanks

points
Submitted by Ellis Burgess
over 8 years

1 comments

Judy over 8 years

Hi Ellis Burgess, have you already posted your head element where we can see it?

Answer 5410c8ec80ff33f6e400011b

-1 votes

Permalink

Hi how do you ask a question/for help on here I clicked on ask a question. typed/asked my question i cold see the question preview but no button to post the question just the ask a question button which i clicked as there was noting else> i have done tried twice now but my question never goes on the form an an there is know email address to contact any one. can some one pleas help.

points
Submitted by tagMaster13212
over 9 years

2 comments

Judy over 9 years

That is pretty odd that you can’t complete a new question. What operating system and web browser are you using?

tagMaster13212 over 9 years

I have tried doing in with chrome and firefox and on windows 7 and 8

Answer 547cdedd9c4e9d2563000e83

-1 votes

Permalink

So I went forward into another lesson to see how the coding was done. Went back and copied into this lesson and it worked

This is what I put in index.html

 <link href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/shift.css" rel="stylesheet">


<link rel="stylesheet" href="main.css">

and this was main.css .jumbotron h1 { color: #fff; font-family:'Shift', sans-serif; font-size: 48px; font-weight: bold; }

points
Submitted by embersecret
over 9 years

2 comments

Moishe Lipsker over 9 years

I had the same problem and this solved it. Thanks.

embersecret about 9 years

no problem :)

Answer 551ddc61e39efe58d2000142

-1 votes

Permalink

Can someone help me? This is in my index:

<head>
    <link href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/shift.css"  rel="stylesheet">
    <link href="main.css" rel"stylesheet">
      </head>

and this is in my main.css:

.jumbotron h1{
    color:#fff;
    font-family:'Shift', sans-serif;
    font-size:48px;
    font-weight:bold;
}

It is giving me the error “Set the font-family of the h1 element inside

..
to ‘Shift’, sans-serif “ but everything looks okay.

points
Submitted by tarabelle123
about 9 years

9 comments

Judy about 9 years

There is an = missing here: rel”stylesheet”.

tarabelle123 about 9 years

That was it. thank you. Good catch!!

Judy about 9 years

@ tarabelle123, you’re welcome!

REEM about 9 years

I have the same problem, could you help me please.

REEM about 9 years

could some one please tell me how to post my question??????

Judy about 9 years

Hi reemalnaji, you have a space between / and courses that is breaking that URL.

REEM about 9 years

thank you ,I tried to do what you said, but ,it was not working.

Judy almost 9 years

@ reemalnaji, please show me your corrected code so that I can test it.

ccsi99999 almost 9 years

put an equal sign between rel and “stylesheet” The line should be

Answer 55454cfd86f552224a00015f

-1 votes

Permalink

Hello guys so I’ve been fighting with question 6/10 for about a week now and finally got what I was doing wrong. So if you guys look on top. There’s index.html and main.CSS so question one need to be answer in the index.html EXACTLY LIKE THIS

<!DOCTYPE html>
<html>
<head>
<link href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/shift.css" rel="stylesheet">
</head>
</html>

and question number two need to be answer in main.CSS EXACTLY LIKE THIS

.jumbotron h1 {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    font-family: 'shift', sans-serif;
}

GOOD LUCK GUYS!!

points
Submitted by jeangardy509
almost 9 years

10 comments

Judy almost 9 years

Hi jeangardy509, that is an interesting way to fool the code checker but it certainly isn’t the correct code for creating the web page in this project. If your goal is learning HTML/CSS I suggest you give this another go. As it stands, your code only gives a blank page.

jeangardy509 almost 9 years

oh man I thought I had finally got it. So if you don’t min me asking. What is the correct way to fix this issue? I’ve been fighting with it for about a week now. Thanks!!

Judy almost 9 years

If you passed exercise 5 then in exercise 6, you can use the Reset Code button to bring all of that code forward. Then as you work through the steps in exercise 6, also check my post that is near the top of this thread, the one that starts out with: “1. check to see if you still have the link to your main.css”. There are three of the most common mistakes listed there.

jeangardy509 almost 9 years

I’ll do so. thanks for the advice and the heads up

jeangardy509 almost 9 years

so you mean to tell me both questions for number 6/10 needs to be answer in main.CSS?

Judy almost 9 years

Hi jeangardy509, no I don’t mean that.

jeangardy509 almost 9 years

so where does question one in section 6/10 need to answer to be correct than? in index.html or main.CSS

Judy almost 9 years

Step one is asking you to add a line of code to the index.html file. Specifically a line is to be added to the head element. That line is a link to the shift.css file.

Kaifee Haque almost 9 years

jeangardy509, I can confirm that your method works. Also, I think this is the only way to go for people who can’t pass anyway. Our code is fine. It works. The font is Shift. The only problem is the validator won’t accept it. I think ir is fair that we use your method, then copy/paste our code, the correct way, into the next exercise. Hope this helps!

jeangardy509 almost 9 years

Not a problem @Kaifee Haque

Answer 559f3f4ed3292f26430001b6

-1 votes

Permalink

Literally seeing the changes yet the the validator will not accept. Very frustrating. Can someone help me out?

points
Submitted by Brahman225
almost 9 years

1 comments

Judy almost 9 years

Something seems to have happened with this exercise. I’ve asked a few others to look into it to confirm that they are seeing the same thing we are and then we’ll see about getting a bug report put in.

Answer 559fd0f793767654fd0002dc

-1 votes

Permalink

I get an error at step 6. same error as most people and I can not seem to fix it. here’s what’s in the head section:

 <link href="http://s3.amazonaws.com/codecademy-content/courses/ltp/css/shift.css" rel="stylesheet">

and here is what I have in my main.css:

.jumbotron h1 { color: #fff; font-family:'Shift', sans-serif; font-size: 48px; font-weight: bold;}

where am I failing? :D

edit: I already see the changes in the preview mode, so the code is taking effect, but the tutorial won’t let me get to step 7.

points
Submitted by danilozappala
almost 9 years

2 comments

danilozappala almost 9 years

Basically, I just skipped step 6 by selecting step 7… :D

Judy almost 9 years

The problem has been fixed, please try again.

Answer 559ff2de9113cbc27b000448

-1 votes

Permalink

This was a tough one for me… :-( I started in Linux Fedora 21 with both Chrome and Firefox… fail. Moved onto Windows 7 Enterprise Chrome… fail Finally had success with Windows 7 Enterprise and Internet Explorer… the joke is on all of us Linux snobs :)

Anyway. Good luck!

points
Submitted by Richard Valdes
almost 9 years

Answer 55a0354b76b8fe15a400070f

-1 votes

Permalink

Guys, I got the same problem.. and all possible solutions did not work for me. What I did (using Firefox) is change the http:// to https://

Let me know if it works for you guys too!!!

points
Submitted by fosjo
almost 9 years

Answer 55a58d3be39efeb32a0004e2

-1 votes

Permalink

Hello, this problem has not been resolve as I’m having the same problem. I reviewed my codes multiple times for missing letters, semi-colons, and etc….still does not work. Please fix. Thanks!

points
Submitted by Cthao
almost 9 years

1 comments

Judy almost 9 years

Hi Cthao, it is working as expected for me. Please show me all of your and all of your main.css file.