Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS Treehouse Club: CSS My First Web Page Introduction to My First Web Page

Melissa Stark
Melissa Stark
3,955 Points

Style changes not working?

When I changed the colors and picture size and saved then did web view it did not show the changes. What do I need to do to make this happen?

Hi Melissa,

Could you post your code please and we'll take a look?

Thanks :)

-Rich

3 Answers

Melissa Stark
Melissa Stark
3,955 Points
Top bar color 
***********************************************/

html {
    border-top: 20px solid #F87217;
}



/***********************************************
Body styling 
***********************************************/

body {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 20px;
    font-size: 1.3em;
    line-height: 1.6em;
  font-family: 'Open Sans', sans-serif;
    color: #555;
    font-weight: 300;
}



/***********************************************
Image styling 
***********************************************/

img {
    border-radius: 10%;
    max-width: 340px;
}



/***********************************************
Headline styling 
***********************************************/
h1 {
    font-size: 1.5em;
    line-height: .5em;
    color: #CC6600;
}

h2 {
    font-size: 1em;
    line-height: 1em;
    font-style: oblique;
    color: #ccc;

}

h3 {
    font-size: .875em;
    line-height: 1em;
    font-weight: normal;
}

h4 {
    margin-top: 60px;
    font-weight: 500;
  color: #168EF7;
}
Melissa Stark
Melissa Stark
3,955 Points

Haha I did refresh webpage and it did show up. Thanks everyone!

No problem, was just going to say it sounds as though it could be caching. One good way to check this (if it ever does it again) is by using something such as CodePen :)

-Rich