Bootstrap panel - how to fill hole panel with image?

Hello,
I’m working on my tribute page and I want to add some images there into panels, but as my picture has class .img-responsive, it isn’t filling hole panel. How can I change that? I tried to add it like background-image but then it is too big. Is there some way to do it without resizing image externally? Thanks
http://codepen.io/ipinfil/pen/JKLABQ

If I’m understanding you right, you want to add this to your CSS

.panel-body {
  padding: 0;
}
1 Like

Exactly! Thank you! I tried:
` .panel {
padding:0;
}

but it didn’t work. :slight_smile: