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 Changing Your CSS

bevinwg
bevinwg
5,196 Points

in CSS training, when in the quiz, the workspace is not allowing me to edit the font size and other is requesting

Ive refreshed again and again but the program is locking up and not allowing me to make the changes requested to go forward. I do the initial heading change of color and other and then the screen moves on to next task and asks me to make changes in the body but the program is not responding when I attempt to make the changes.

Cannot click in to the space needed to change it.

style.css
/***********************************************
Top bar color 
***********************************************/
html {
  border-top: 65px solid #4D7094 ;
}

/***********************************************
Body styling 
***********************************************/
body {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 20px;
  font-size: 1.3em;
  line-height: 1.6em;
  font-family: Helvetica Neue, Helvetica, Arial, serif;
  color: #777;
  font-weight: 300;
}

.centered {
  text-align: right;
}

/***********************************************
Image styling 
***********************************************/
img {
  border-radius: 100%;
  max-width: 340px;
}

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

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

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

h4 {
  margin-top: 60px;
  font-weight: 500;
  color: #564581;
}
index.html
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>All About Joy's Page</title>
    <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel="stylesheet" type="text/css">
    <link href="style.css" rel="stylesheet">
  </head>   
  <body> 
    <img src="sam.jpg" alt="Sam">

    <h1>My Name</h1>

    <h2>My Profession</h2>

    <h3>Where I Live</h3>

    <h4>What I do:</h4>
       <p>I'm a teacher at Treehouse, but you should write in what you do here!</p>

    <h4>What I enjoy doing:</h4>  
      <p>When I'm not writing code, I like to surf and play music. Your turn, write in something that makes you happy, or things you like to do in your free time.</p>

  </body>
</html>

Hi Bevin,

Were you able to make the changes? I tried the challenge and did have problems so I wanted to see if you were able to get it to work.

Cheers, Tracy

5 Answers

Bevin,

Ugh, sorry about that inconvenience but glad you found a workaround!

bevinwg
bevinwg
5,196 Points

Thanks Tracy, I haven't been able to log back in yet and try but hope to be able to try again in the morning.

bevinwg
bevinwg
5,196 Points

Tracy,

When I got back in this morning, I continued with the same issue. I couldn't just click my mouse in the location I needed to edit. I had to click at the top of the document and physically scroll down with the arrow key on my keyboard. Each task that I needed to edit, I had to do exactly the same, getting to the top of the document and clicking at the top then manually scrolling with keyboard arrow to get down into the space to edit. Not sure what changed in the set up. When I started the courses, I could just click where I was requested to change and enter the info.

(Also, not sure if it helps but I am on a MAC running safari with the latest update 10.11.3)

Bevin,

Hmm... Do you get the same problem in Chrome? Or in a private window in Safari?

bevinwg
bevinwg
5,196 Points

Tracy, I'm using Safari on my MacBookPro with the latest updates. I don't have any other browsers on my mac (they've been deleted awhile ago as they couldn't compete with Safari for my usage). I made it through several of the coding challenges and got signed up for our local program. Still running into the issue in the "How to Make a Website" class.

Having to click in the top line of the workspaces index.html workspace in the line #1 and then arrow down and/or over to get to the location of where I need to make changes for the code challenges. Not sure what the issue is, but definitely slows down my class progress a tad. Just glad I found a way to navigate around it.