I\'m using a Panel from Bootstrap
however for the heading I want to use my own background color for the heading. When I don\'t put panel-heading
class
You can create a custom class for your panel heading. Using this css class you can style the panel heading. I have a simple Fiddle for this.
HTML:
Panel title
Panel content
CSS:
.panel-default > .panel-heading-custom {
background: #ff0000; color: #fff; }
Demo Link:
http://jsfiddle.net/kiranvarthi/t1Lq966k/