How can I add an image / logo right above the grid?

  • Klemtek
    Asked on March 30, 2015 at 3:38 PM

    How can I label a grid like the one attached

    Jotform Thread 543407 Screenshot
  • Ben
    Replied on March 30, 2015 at 4:04 PM

    You could do that with a bit of custom CSS, like so:

    table.form-matrix-table:before {
        background-image: url("http://www.corbanone.com/img/cos-logo.png");
        content: " ";
        display: block;
        height: 54px;
        margin-bottom: -20px;
        width: 217px;
    }

    Of course, you need to get permission from Corban OneSource to use their logo, but that would be the approximate steps that would need to be taken.

    The CSS would be applied to all matrix fields in your jotform, so if you have 3 all 3 would have it, but it is easy to limit it to only one instead

    You can see how to add it to your jotform here: Inject Custom CSS Codes