Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    thanks for your question, and sorry for the trouble.

    This usually works, but in your case, some CSS in your theme is interfering. To work around that, please add this to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress:

    .tablepress th,
    .tablepress td {
      padding: 8px !important;
    }

    For changing specific text, you could try the approach from https://tablepress.org/faq/highlight-cells-or-content/ and https://tablepress.org/faq/change-font-family-size-color/

    Regards,
    Tobias

    Thread Starter arakowski

    (@arakowski)

    Wow Fantastic. That worked!

    Thank you.

    I also tried to change the color of the text to navy in the table.
    and bold some of my headings and put row borders

    Here is what I have in the plugin options right now. I’m doing something wrong.

    .tablepress-id-5 {
    width: 850px;
    margin: 0 auto 1em;
    font-size: 15px;
    font-family: georgia;
    color: #000084;
    }

    body {
    color: #000084;
    }

    .tablepress th,
    .tablepress td {
    padding: 8px !important;
    }

    Thread Starter arakowski

    (@arakowski)

    Oh I just realized you directed me to a link for highlighting text. I will give it a try.

    Thread Starter arakowski

    (@arakowski)

    OK So I tried a few things but I am still doing something wrong.
    My title “Availabilities” is half shaded on the row. which is weird.

    Still not sure how to bold and make a little bigger my titles Availabilites, Office, and Industrial
    and make all the text #000084

    Here is what is in the plugin options now.

    .tablepress-id-5 {
    width: 850px;
    margin: 0 auto 1em;
    font-size: 15px;
    font-family: georgia;
    color: #000084;
    }

    .tablepress th,
    .tablepress td {
    padding: 8px !important;
    }

    .tablepress-id-5 .row-2 {
    background-color: #000084;
    }

    I look forward to your response.

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    please extend the code

    .tablepress th,
    .tablepress td {
      padding: 8px !important;
    }

    to

    .tablepress th,
    .tablepress td {
      padding: 8px !important;
      opacity: 1;
    }

    That should fix the problem with the first row.

    To change the text color, change

    .tablepress-id-5 {
      width: 850px;
      margin: 0 auto 1em;
      font-size: 15px;
      font-family: georgia;
      color: #000084;
    }

    to

    .tablepress-id-5 {
      width: 850px;
      margin: 0 auto 1em;
    }
    
    .tablepress-id-5 td {
      font-size: 15px;
      font-family: georgia;
      color: #000084;
    }

    To make some words bold, just change the text like

    <strong>Industrial</strong>

    Regards,
    Tobias

    Thread Starter arakowski

    (@arakowski)

    Thank you so much for your help.
    My table looks fantastic. Take a look!

    Your support is wonderful! Thank for helping me quickly.
    I am going to make a donation right now.

    Well Deserved!

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    no problem, you are very welcome! 🙂 Good to hear that this helped!
    And thanks for the donation, I really appreciate it!

    Best wishes,
    Tobias

    P.S.: In case you haven’t, please rate TablePress here in the plugin directory. Thanks!

    Thread Starter arakowski

    (@arakowski)

    I rated TablePress 5 stars.

    Plugin Author Tobias Bäthge

    (@tobiasbg)

    Hi,

    thanks, I really appreciate that! 🙂

    Best wishes,
    Tobias

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘Tablepress’ is closed to new replies.