Skip to content

Instantly share code, notes, and snippets.

@premregmi
Created March 1, 2016 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save premregmi/9ca8ed39338c6061058c to your computer and use it in GitHub Desktop.
Save premregmi/9ca8ed39338c6061058c to your computer and use it in GitHub Desktop.
Responsive Author Box Code Example
.author-box {
margin-top: 60px;
padding: 40px 0;
border-bottom: 1px solid #f0f0f0;
border-top: 1px solid #f0f0f0;
}
.author-box .image {
float: left;
margin-right: 10px;
max-width: 80px;
border: 1px solid #f0f0f0;
border-radius: 50%;
padding: 10px;
}
.author-box .info {
overflow: hidden;
}
.author-box .info p {
color: #666;
font-weight: 300;
line-height: 24px;
}
.author-box .info h6 {
font-size: 14px;
color: #666;
margin: 0;
margin-top: 10px;
padding: 0;
font-style: italic;
}
.author-box .info h6 a {
color: #b09f23;
}
<div class="author-box">
<div class="image">
<img src="images/icon3.png" class="img-responsive" alt="">
</div>
<div class="info">
<p>Quickly add a custom author box to your site with the author box. It is responsive and making use of Bootstrap 3. HTML processed markup for responsive Bootstrap authorbox. </p>
<h6><a href="" title="">Author Name |</a> Address</h6>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment