css - Altering height of Bootstrap panel footer -


i want change height of bootstrap's panel footer make shorter, after looking around everywhere haven't found way whilst adjusting position of text within footer, doesn't poke out bottom.

(merely adjusting font size wasn't enough)

here code , screenshot of issue:

.panel-default>.panel-footer {     color: rgba(0, 0, 0, 0.6);     font-size: smaller;     max-height: 20px; }  <div class="panel-footer">     (0 comments) </div> 

http://i.stack.imgur.com/aaxx8.jpg

quas94 hi there.
need here change height of panel footer css.

here fiddle.

.panel-heading{     height:50px; }  .panel-body{     min-height:150px;      background-color: gray; }      .panel-footer{     height:100px;      background-color: chartreuse; } 

enter image description here


Comments

Popular posts from this blog

python - jinja2: TemplateSyntaxError: expected token ',', got 'string' -

Qt4: how to send QString inside a struct via QSharedMemory -

node.js - NodeJS remote terminal to Dropbear OpenWRT-Server -