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

    (@tobiasbg)

    Hi,

    thanks for your question, and sorry for the trouble.

    Let’s start with the casing: This is currently set to all-uppercase by your theme. To override that, please add this to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress:

    .tablepress thead th {
        text-transform: none;
    }

    Regarding the height: We can reduce the spacing between the text a little bit. For that, extend the CSS from above to

    .tablepress thead th {
        text-transform: none;
        line-height: normal;
    }

    Regards,
    Tobias

    Thread Starter kevrose

    (@kevrose)

    Hi Tobias,

    That’s great, many thanks!

    Is there a way to over ride the header being bold?

    Also, I can use Google Fonts in my child theme. Can they be used within Tablepress?

    Really appreciate your speedy response earlier!

    Regards

    Kevin

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi Kevin,

    sure, to un-bold the header row, just add the command

    font-weight: normal;
    

    to the code from above.

    And using those Google Fonts is no problem. In fact, the header row will use the Lora font that you have chosen at the moment, as soon as you remove the “Custom CSS” that is setting the header row font to Tahoma.

    Regards,
    Tobias

    Thread Starter kevrose

    (@kevrose)

    Thanks Tobias, that’s great! I’ve implemented the changes and worked out from your code how to change other parts.

    Will be donating, keep up the excellent work.

    Regards

    Kevin

    Plugin Author TobiasBg

    (@tobiasbg)

    Hi,

    no problem, you are very welcome! ?? Good to hear that this helped!
    And thanks for wanting to donate, I really appreciate it!

    Best wishes,
    Tobias

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Header height and line spacing’ is closed to new replies.