Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    thanks for your question!

    First of all, please do not use WP-Table Reloaded anymore, as it has been replaced by TablePress: http://tobias.baethge.com/2013/01/tablepress-replaces-wp-table-reloaded/

    Then, can you please explain in more detail, and maybe with an example, what you mean with “template of a table”? I don’t really understand… Thanks!

    Regards,
    Tobias

    Thread Starter mastaliyev

    (@mastaliyev)

    thanks for response!
    Saying template i mean the theme of table, how can i change the appearance of table? or i should write some code?

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    to change the styling of the table, you should use CSS Code.
    Please take a look at the TablePress FAQ at http://tablepress.org/faq/ where you can find some examples for common style changes.

    Regards,
    Tobias

    Thread Starter mastaliyev

    (@mastaliyev)

    thank you so much!

    can you please tell me, how can i insert a text with link? i mean, in table it looks like a text (with hyperlink) and when you click it opens other articles.

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    no problem. To insert a link, either type in the HTML code for a link manually or use the “Insert link” button below the table input fields on the “Edit” screen.

    Regards,
    Tobias

    Thread Starter mastaliyev

    (@mastaliyev)

    thank you for such a wonderful plugin!

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    no problem, you are very welcome! 🙂 Good to hear that this helped!

    Best wishes,
    Tobias

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

    Thread Starter mastaliyev

    (@mastaliyev)

    mister i’ve few question. i hope you help me

    1) i want change hover color for all cells other than head row. on head row i managed do that with your FAQ help.

    2) how make so that, table always show all the rows (without page turning) . now it show only 10 out of 29 , i want to show all 29 for all my table. i don’t need paging.

    3) from where i can change the text of some labels? like search, show etc.

    4) how align text for whole table? i tried for head row ,but does not work. i write it like this
    .tablepress .row-1 {
    font-family: calibri light;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    }

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    1) Did you try the answer to the question “How can I change the color used for highlighting hovered rows?”?

    2) Well, then just uncheck the “Pagination” checkbox on the table’s “Edit” screen 🙂

    3) That’s possible with a TablePress Extension: http://tablepress.org/extensions/change-datatables-strings/

    4) For the head row, you’ll need to target the th elements:

    .tablepress th {
      font-family: calibri light;
      font-size: 12px;
      color: #ffffff;
      text-align: center;
    }

    For other table cells, it’s the td element:

    .tablepress td {
      font-family: calibri light;
      font-size: 12px;
      color: #ffffff;
      text-align: center;
    }

    Regards,
    Tobias

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘how change template of table?’ is closed to new replies.