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

i don't know how to post up my code so i can discuss my problem ?

Could someone help me out with posting up some of my code that i'm trying to discuss my problem on it?

4 Answers

Hello Kevan.

Here is a link that should work for your: https://teamtreehouse.com/community/posting-code-to-the-forum

If you still find trouble or have doubts please ask.

Vittorio

Try posting a snaphot of your workspace or put a link to a codepen

#body{
  font-family: sans-serif;
  text-align:center;
}

a{
text-decoration:none;
  color:red;
}

#container{
  background-color:#00cc99;
  width: 800px;
  margin-left:;
  margin-right:auto;
}




#header{
  background-color:#00cc99;
  max-width:auto;
  margin:0 auto;
  color:white;
  width:100%;
  border-bottom: 0px solid;
  font-size:26px;
  letter-spacing:1.3px;
  line-height:2;
  padding-bottom:10px;
  font-weight:lighter
}


#content{
  padding-left: 10px;


}
#nav{

  width:180px;
  float:left;
 }

#nav ul {
list-style-type:none;

}
#nav .selected{
font-weight:bold;
}

#main{
 width:600px;
 float:right;

}
#footer{
  max-width:100%;
clear:both;
  padding:10px;
  background-color:#ffcc99;
  color:white;
  text-align:right;

}
<html>

  <head>
  <title>My webpage</title>
    <link rel="stylesheet" type="text/css" href="style.css"/>

  </head>

  <body>




  <div id ="header">
       <h1>Wild life Peace</h1>

  </div>

  <div id="content">

    <div id="Nav">
        <h3>navigation</h3>
        <ul>
        <li><a class="selected" href="home"></a>Home</li>
        <li>about</li>
        <li>link</li>


   </ul>
   </div>
   </div>



        <div id="main">
        <h2>Homepage</h2>

            <p>It’s no secret that connected home devices are riddled with security concerns. A recent investigation into Nest thermostats leaking user data onto the internet seemed especially anxiety-inducing, given how incredibly popular the gadgets are. But the story’s not as scary as some reports might lead you to believe.

The new research comes out of Princeton’s Center for Information Technology Policy. There, two researchers have spent the last two months testing the security of various smart home gizmos. They looked at the Nest thermostat, Belkin’s WeMo Switch, Ubi’s Smart Speaker, Sharx’s Security Camera, a Smartthings hub, and a PixStar digital photo frame. The results were not pretty.

It turns out that “many devices fail to encrypt at least some of the traffic that they send and receive,” according to a CITP blog post that was published yesterday. Many of these devices were sending both private and public information about the users, unencrypted, out into the digital ether
.</p>


</div>


      <div id="footer">


    </div>


</body>

</html>