Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save alexkalh/ae1add1886e37c6ee3a7ba2858646e78 to your computer and use it in GitHub Desktop.
Save alexkalh/ae1add1886e37c6ee3a7ba2858646e78 to your computer and use it in GitHub Desktop.
2016.09.22 - html_enliven 2.0 - resize top banner
/*
The width of top-banner is not fixed!
The Enliven is using bootstrap grid. You can change width of column by class:
e.g.
Logo's column: "e_left", please change "col-md-6" to "col-md-3"
Banner's column: "e_right", please change "col-md-6" to "col-md-9"
*/
<div class="e_middle">
<div class="e_container clearfix container">
<div class="row">
<div class="col-md-3 e_left">
<figure class="e_site_logo"><a href="index.html"><img src="http://placehold.it/190x90" alt="" class="img-responsive"></a></figure>
</div>
<div class="col-md-9 e_right">
<figure class="e_top_banner"><a href="index.html"><img src="http://placehold.it/728x90" alt="" class="img-responsive"></a></figure>
</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment