Foundation zurb snippet. profile wall

This snippet was created to help web designers, front-end and back-end developer save time. Use it in your project and build your app faster,
You can also download the HTML, CSS, and JS code.

HTML code

This is the html code used to create this bootstrap snippet, You can copy, paste, change, customize and run the following HTML code to get a result like the one shown in the preview selection

<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet">
<div class="row">
    <div class="large-10 colums large-offset-1">
        <div class="panel">
            <div class="cover-photo">
              <div class="fb-timeline-img">
                  <img src="http://lorempixel.com/930/287/nature/8/" alt="">
              </div>
              <div class="fb-name">
                  <h2><a href="#">Deyson Bejarano</a></h2>
              </div>
            </div>
            <div class="panel-body">
              <div class="profile-thumb">
                  <img src="http://bootdey.com/img/Content/avatar/avatar1.png" alt="">
              </div>
              <a href="#" class="fb-user-mail">[email protected]</a>
            </div>
        </div>
        
        <div class="panel profile-info">
          <form>
              <textarea class="input-lg p-text-area" rows="2" placeholder="Whats in your mind today?"></textarea>
          </form>
          <div class="panel-footer">
              <button type="button" class="button success pull-right">Post</button>
              <ul class="nav nav-pills">
                  <li><a href="#"><i class="fa fa-map-marker"></i></a></li>
                  <li><a href="#"><i class="fa fa-camera"></i></a></li>
                  <li><a href="#"><i class=" fa fa-film"></i></a></li>
                  <li><a href="#"><i class="fa fa-microphone"></i></a></li>
              </ul>
          </div>
        </div>
        
        <div class="panel">
          <div class="panel-body">
              <div class="fb-user-thumb">
                  <img src="http://bootdey.com/img/Content/avatar/avatar2.png" alt="">
              </div>
              <div class="fb-user-details">
                  <h3><a href="#" class="#">Margarita Elina</a></h3>
                  <p>7 minutes ago near Alaska, USA</p>
              </div>
              <div class="clearfix"></div>
              <p class="fb-user-status">John is world famous professional photographer.  with forward thinking clients to create beautiful, honest and amazing things that bring positive results. John is world famous professional photographer.  with forward thinking clients to create beautiful, honest and amazing things that bring positive results.
              </p>
              <div class="fb-status-container fb-border">
                  <div class="fb-time-action">
                      <a href="#" title="Like this">Like</a>
                      <span>-</span>
                      <a href="#" title="Leave a comment">Comments</a>
                      <span>-</span>
                      <a href="#" title="Send this to friend or post it on your time line">Share</a>
                  </div>
              </div>
        
        
              <div class="fb-status-container fb-border fb-gray-bg">
                  <div class="fb-time-action like-info">
                      <a href="#">Jhon Due,</a>
                      <a href="#">Danieal Kalion</a>
                      <span>and</span>
                      <a href="#">40 more</a>
                      <span>like this</span>
                  </div>
        
                  <ul class="fb-comments">
                      <li>
                          <a href="#" class="cmt-thumb">
                              <img src="http://bootdey.com/img/Content/avatar/avatar3.png" alt="">
                          </a>
                          <div class="cmt-details">
                              <a href="#">Jhone due</a>
                              <span> is world famous professional photographer.  with forward thinking clients to create beautiful, </span>
                              <p>40 minutes ago - <a href="#" class="like-link">Like</a></p>
                          </div>
                      </li>
                      <li>
                          <a href="#" class="cmt-thumb">
                              <img src="http://bootdey.com/img/Content/avatar/avatar3.png" alt="">
                          </a>
                          <div class="cmt-details">
                              <a href="#">Tawseef</a>
                              <span> is world famous professional photographer.  with forward thinking clients to create beautiful, </span>
                              <p>34 minutes ago - <a href="#" class="like-link">Like</a></p>
                          </div>
                      </li>
        
                      <li>
                          <a href="#" class="cmt-thumb">
                              <img src="http://bootdey.com/img/Content/avatar/avatar4.png" alt="">
                          </a>
                          <div class="cmt-details">
                              <a href="#">Jhone due</a>
                              <span> is world famous professional photographer.   </span>
                              <p>15 minutes ago - <a href="#" class="like-link">Like</a></p>
                          </div>
                      </li>
                      <li>
                          <a href="#" class="cmt-thumb">
                              <img src="http://bootdey.com/img/Content/avatar/avatar5.png" alt="">
                          </a>
                          <div class="cmt-details">
                              <a href="#">Tawseef</a>
                              <span> thinking clients to create beautiful world famous professional photographer.  </span>
                              <p>2 minutes ago - <a href="#" class="like-link">Like</a></p>
                          </div>
                      </li>
                      <li>
                          <a href="#" class="cmt-thumb">
                              <img src="http://bootdey.com/img/Content/avatar/avatar8.png" alt="">
                          </a>
                          <div class="cmt-form">
                              <textarea  placeholder="Write a comment..." name=""></textarea>
                          </div>
                      </li>
                  </ul>
                  <div class="clearfix"></div>
              </div>
          </div>
        </div>
    </div>
</div>

CSS code

This is the css code used to create this bootstrap snippet, You can copy, paste, change, customize and run the following CSS code to get a result Like the one shown in the preview selection

body {
    color: #797979;
    background: #f1f2f7;
    font-family: 'Open Sans', sans-serif;
    padding: 0px !important;
    margin: 0px !important;
    font-size: 13px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    margin-top:20px;
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

.panel-body {
    padding: 15px;
    background:#fff;
}

.cover-photo {
    position: relative;
}

a:hover{
    text-decoration:none;    
}

.fb-timeline-img img {
    width: 100%;
    border-radius: 4px 4px 0 0;
    -webkit-border-radius: 4px 4px 0 0;
}

.profile-thumb img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    margin-top: -90px;
    border: 3px solid #fff;
}

.profile-info .panel-footer ul li a {
    color: #7a7a7a;
}

.profile-thumb {
    float: left;
    position: relative;
}

.p-text-area, .p-text-area:focus {
    border: none;
    font-weight: 300;
    box-shadow: none;
    color: #c3c3c3;
    font-size: 16px;
}

.fb-user-mail {
    margin: 10px 0 0 20px;
    display: inline-block;
}

.fb-name  {
    bottom: 5px;
    left: 175px;
    position: absolute;
}

.fb-name h2 a {
    color: #FFFFFF;
    text-rendering: optimizelegibility;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
    font-size: 25px;
}

.fb-user-thumb {
    float: left;
    width: 70px;
    margin-right:15px;
}

.fb-user-thumb img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
}


.fb-user-details h3 {
    margin: 15px 0 0;
    font-size: 18px;
    font-weight: 300;
}

.fb-user-details p {
    color: #c3c3c3;
}


.fb-user-status {
    padding: 10px 0;
    line-height: 20px;
}

.fb-time-action {
    padding: 15px 0;
}

.fb-border {
    border-top:1px solid #ebeef5;
}

.fb-time-action span, .fb-time-action a {
    margin-right: 5px;
}

.fb-time-action a {
    color: #2972a1;
}

.fb-time-action a:hover {
    text-decoration: underline;
}

.fb-time-action span {
    color: #5a5a5a;
}

.fb-status-container, .fb-comments li {
    margin: 0 -15px 0 -15px;
    padding: 0 15px;
}

.fb-gray-bg {
    background: #f6f6f6;
}

.fb-comments li {
    border-top:1px solid #ebeef5;
    padding: 15px;
}

.fb-comments .cmt-thumb  {
    width: 50px;
    float: left;
    margin-right: 5px;
    display:inline-block;
}

.fb-comments .cmt-thumb img {
    width: 50px;
}

.fb-comments .cmt-details {
    padding-top: 5px;
}


.fb-comments .cmt-details a  {
    font-size: 14px;
    font-weight: bold;
}

.fb-comments .cmt-details a.like-link {
    font-size: 12px;
    font-weight: normal;
}

.cmt-form {
    display: inline-block;
    width: 80%;
}

.cmt-form textarea{
    height: 50px;
    border:1px solid #eee;
}

.fb-timeliner h2 {
    background: #828283;
    color: #fff;
    margin-top: 0;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    font-weight: 300;
}

.fb-timeliner ul {
    margin-left:15px;
    margin-bottom: 20px;
    list-style-type:none;
}

.fb-comments{
    list-style-type:none;
}

.fb-timeliner ul li {
    margin-bottom: 3px;
}

.fb-timeliner ul li a{
    color: #999797;
    border-left: 4px solid #d3d7dd;
    padding-left:10px;
    padding-top: 3px;
    padding-bottom: 3px;
    display: block;
}

.fb-timeliner ul li a:hover{
    color: #999797;
    border-left: 4px solid #b1b1b1;
    padding-left:10px;
}

.fb-timeliner ul li.active a{
    color: #7a7a7a;
    border-left: 4px solid #7a7a7a;
    padding-left:10px;
}

.recent-highlight {
    background: #FF6C60 !important;
}

.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-pills>li {
    float: left;
}

.nav>li {
    position: relative;
    display: block;
}

.profile-info .panel-footer ul li a {
    color: #7a7a7a;
}

.nav-pills>li>a {
    border-radius: 4px;
}

.nav>li>a {
    position: relative;
    display: block;
    padding: 10px 15px;
}

.panel-footer {
    padding: 50px 15px;
    height:auto;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.pull-right {
  float: right !important;
}