• Resolved tekka

    (@tekka)


    Hi Tobias

    I have spent quite a bit of time trying to figure this out and reading documentation and support, but I still can’t figure it out. I’m sure it is simple though!

    I would just like to change the style of the wp-table-reloaded-table-name h2 as I would rather it look more like my site’s h3 style than the h2.

    I’ve tried adding styling to the custom css window but not managed to get it to work.

    here’s a page of the site

    Thanks for your help
    Tekka

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,

    it looks like you have added some CSS code to the plugin.css file, right? If yes: Don’t do that! You would lose those changes once you update the plugin. Instead, I recommend adding that code (in a slightly changed way) to the “Custom CSS” textfield on the “Plugin Options” screen of WP-Table Reloaded.
    This code should work:

    h2.wp-table-reloaded-table-name {
      font-size: 18px;
      font-weight: bold;
      line-height: 24px;
    }

    Best wishes,
    Tobias

    Thread Starter tekka

    (@tekka)

    Hi Tobias

    Yes in my naivety i think i may have changed something in that file so i will revert it back to the original and use your code above

    many thanks for your help 🙂

    Thread Starter tekka

    (@tekka)

    Hi again

    Sorry but the h2 css code you gave me doesn’t change the h2 style so not sure now what i am doing wrong.

    I reverted the plugin.css back to the original and added in custom css as you advised, but no change?

    the site has now moved to here

    thanks!

    Hi,

    ah, you are right.
    The current CSS in the theme still takes precedence. Please try this code:

    h2.wp-table-reloaded-table-name {
      font-size: 18px!important;
      font-weight: bold!important;
      line-height: 24px!important;
    }

    Best wishes,
    Tobias

    Thread Starter tekka

    (@tekka)

    Perfect! thank you so much 🙂

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

The topic ‘[Plugin: WP-Table Reloaded] changing the h2 style’ is closed to new replies.