Question about Panel

Sorry it’s my first time posting here. I just wanted to ask if anybody knew how to embed a custom icon into the left corner of a panel heading in Bootstrap.

Hey and welcome! I think this might be helpful. If u need more help feel free to ask :slight_smile: .

4 Likes

@MrJigen something like this?

  <section>
      <div class="container">
          <div class="panel panel-primary">
              <div class="panel-heading">
                  <h2><i class="fa fa-lg fa-file-text" aria-hidden="true"></i> SUMMARY</h2>
              </div>
              <div class="panel-body">
                  <p>Bacon ipsum dolor amet jerky spare ribs drumstick meatloaf pork boudin...</p>
              </div>
          </div>
      </div>
  </section>

Yes however I would like to use a custom .ico image.