• How do I print the table borders on this page? I’ve tried searching in the forum but still not sure.

    Thank you!

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter zap3r

    (@zap3r)

    Anyone?!

    Plugin Contributor twinpictures

    (@twinpictures)

    add the following to the print-page css:

    .table-1 table, .tkt-slctr-tbl-wrap-dv table {
        border: 1px solid #dcdcdc;
        background-color: #fff;
        box-shadow: 0 1px 3px rgb(0 0 0 / 8%), inset 0 0 0 1px rgb(255 255 255 / 50%);
    }
    

    This is a CSS issue and not plugin support related.

    Thread Starter zap3r

    (@zap3r)

    Thank you for your reply. I have added this but it does not work. Is there another factor, maybe with the theme that could be impacting it not working?

    Plugin Contributor twinpictures

    (@twinpictures)

    Did you add this to your print css using @media print?

    IF so, it could be there is other CSS overwriting this. Try adding !important to the end of each line:

    @media print {
       .table-1 table, .tkt-slctr-tbl-wrap-dv table {
           border: 1px solid #dcdcdc !important;
           background-color: #fff !important;
           box-shadow: 0 1px 3px rgb(0 0 0 / 8%), inset 0 0 0 1px rgb(255 255 255 / 50%) !important;;
       }
    }
    

    Again, this is basic CSS, and not related to the functions of our plugin.

    Thread Starter zap3r

    (@zap3r)

    Hi Appreciate this is css and have tried.

    Tried both the below, which should work but they don’t so puzzling as to why!

    —————–

    @media print {
    .table-1 table, .tkt-slctr-tbl-wrap-dv table {
    border: 1px solid #dcdcdc !important;
    background-color: #fff !important;
    box-shadow: 0 1px 3px rgb(0 0 0 / 8%), inset 0 0 0 1px rgb(255 255 255 / 50%) !important;
    }
    }

    —————–
    .table-1 table, .tkt-slctr-tbl-wrap-dv table {
    border: 1px solid #dcdcdc !important;
    background-color: #fff !important;
    box-shadow: 0 1px 3px rgb(0 0 0 / 8%), inset 0 0 0 1px rgb(255 255 255 / 50%) !important;
    }

    —————–

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘print-o-matic’ is closed to new replies.