Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Konstantin Kovshenin

    (@kovshenin)

    Hi there, sure! It looks like your theme doesn’t support any styling for tables, so you’ll have to manually style your tables through CSS. You can style the columns individually by targeting classes like .tix-column-price and so on. You can use Firebug or Chrome’s developer tools to find out the classes for the other columns.

    Hope that helps!

    Thread Starter bamboocreative

    (@bamboocreative)

    Hi Konstantin

    Thanks so much for your quick response. Is it easy for me to manually style tables. I’m not familiar with this level of modification?

    I am trying to use <td class=”tix-column-quantity” style=”text-align: center; padding-left: 50px;”> but cant seem to get it to work. But its possible that I am not even close with this code?

    Thanks

    Nick

    Plugin Author Konstantin Kovshenin

    (@kovshenin)

    You don’t have to overwrite the plugin code, but instead, use your theme’s style.css file (or create a child theme) to do that separately from the plugin.

    Here is what I pasted into my css sheet. I simply adjusted the width of how wide I wanted the table.

    .tix_tickets_table {
    background-color: #ebe9ea;
    width: 920px;
    }

    .tix-column-remaining {
    text-align: center;
    }

    .tix-column-price {
    text-align: center;
    }

    .tix-column-quantity {
    text-align: center;
    }

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Text Spacing’ is closed to new replies.