• Resolved lahiggins

    (@lahiggins)


    Hi.

    I am trying to indent text in one column, in 3 specific rows, in one table on a dev site I’m working on. I would prefer not to share the URL in a public forum as it is confidential until launch.

    Is there a way I can get support through private messaging the URL?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    thanks for your question, and sorry for the trouble.

    Sure, just email the link, my address is in the main plugin file “tablepress.php”.

    Regards,
    Tobias

    Thread Starter lahiggins

    (@lahiggins)

    Hi!

    I actually kept working on it yesterday and found a fix. I added this CSS to the plugin options:

    .tablepress-id-27 .row-3 .column-1 {
    padding-left: 45px !important;
    }

    .tablepress-id-27 .row-4 .column-1 {
    padding-left: 45px !important;
    }

    .tablepress-id-27 .row-5 .column-1 {
    padding-left: 45px !important;
    }

    Thanks!

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    nice! This is indeed the best solution here! If you want, you can shorten the CSS code a bit:

    .tablepress-id-27 .row-3 .column-1,
    .tablepress-id-27 .row-4 .column-1,
    .tablepress-id-27 .row-5 .column-1 {
      padding-left: 45px !important;
    }

    Regards,
    Tobias

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Indent text in one column, in certain rows, of 1 specific table’ is closed to new replies.