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

banner
Close banner
0 points
Submitted by Warhawk81
over 8 years

25/26???

h1 { font-family: Verdana, Sans-serif; color: #576D94; } p {
font-size: 18px; color: #4A4943; font-family:Garamond, Serif; } img }
height:100px; width:300px; border:1px #4682b4; }

I’m using Goolgle Chrome, set the zoom to 100% I’m still getting the border error. Please help.

Answer 55c5feb4d3292fabb1000194

1 vote

Permalink

Try to set the zoom of your browser to 80% (ctrl and -). That worked for me (Firefox).

points
Submitted by Maria
over 8 years

Answer 55c64670e39efe1bc40006ad

1 vote

Permalink

your current code… img }

height:100px; width:300px; border:1px #4682b4; }

change to… img { height:100px; width:300px; border:1px solid #4682b4;}

points
Submitted by Keri Tegtmeier
over 8 years

1 comments

jiahui sun over 8 years

right

Answer 55c7f6ead3292ff8e200060b

1 vote

Permalink

For anyone having issues with 3/6 even if you are sure your code is correct

I was getting an error asking me to make sure I put the border in. The border was in the code like this:

img { height:100px; width:300px; border:1px #4682b4; }

Figured this out because I figured out another issue later on:

https://www.codecademy.com/forum_questions/55aed379937676aacc00055d

Apparently some of these properties have to be the first slot when putting a code together. Again, not sure if this is true in the real world, but it is proving true on at least two exercises here.

Your code should read this:

img {

border:1px #4682b4; height:100px; width:300px;

}

This will solve the problem for you.

points
Submitted by lol2dubs
over 8 years

Answer 55d8ec0a93767673580001ba

1 vote

Permalink

Hey guys to fix this error use this:

img { border:1px solid #4682b4; height:100px; width:300px; }

points
Submitted by Jeroen Sangers
over 8 years

Answer 55c7d34a9113cbdba6000195

0 votes

Permalink

i had this problem too on google chrome, try resetting your zoom to default. just ctrl+ or ctrl- until the little zoom bubble in the upper right pops up and click on the “reset to default” button, then try submitting again. it worked for me.

points
Submitted by Abby
over 8 years

Answer 55c7eb55d3292f3db60004bd

0 votes

Permalink

Tried all these solutions. No luck.

Still getting the border error.

points
Submitted by lol2dubs
over 8 years

Answer 55d8f1a9d3292f62430004f7

0 votes

Permalink

img{ border:1px solid #4682b4; height:100px; width:300px; }

Guys ,nothing happens :( Why is this so broken?

points
Submitted by Ioan Varadinov
over 8 years

Answer 55f3cf71d3292fc9970004c0

0 votes

Permalink

you forgot your LINK code in the html header to tell it to read the stylesheet

points
Submitted by JasonUr
over 8 years