• Resolved edcamposs

    (@edcamposs)


    Hi.
    There’s a way to change the css of the tables?
    I’m trying to edit the css files but I can’t make it. Not sure if I’m working in the right file.

    Thanks.

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author AntoineH

    (@antoineh)

    Don’t change the files in the plugin! Because those will be overwritten by WP with every plugin update and your changes will be lost.

    There are basically 3 ways to add your own CSS:

    1. Save it in the Additional CSS field under the Appearance » Customize menu in the WP admin.
    2. Use a plugin to add custom CSS.
    3. Create a child theme to store your CSS.

    Which method works best for you depends on the amount of CSS that you wish to change and how you do your testing. Just make sure your CSS has a higher specificity than the stylesheet from the plugin.

    Thread Starter edcamposs

    (@edcamposs)

    1)
    I’m trying to change to white the background color of the cells so I think I need to change this code:

    table.pool-ranking td{
    padding-left:.5em
    }

    So I think I have to add in there: background-color: white;
    I paste it on “Aditional CSS” and save it but nothing happens.

    2)
    Which plugin please? I’m new on WordPress

    3)
    I don’t know how to create/use child theme 🙁

    Thank you so much!

    Thread Starter edcamposs

    (@edcamposs)

    I test in the Google inspector and change the css to this and it’s working:

    table.pool-ranking{
    font-size:100%
    background-color: white;
    }

    So I change that on “Plugins > edit” but is not working. It looks like the file do not update when I save the changes 🙁

    Thread Starter edcamposs

    (@edcamposs)

    I got it.
    I installed a Custom CSS plugin and it works.

    Thank you so much for share your work!

    @antoineh hey Antoine, I want to change background of match.card

    How can I do that?

    edit: Found a solution using siteorigin css plugin.

    What about fonts? I changed fonts in whole page but in predictions I can’t do this. Any suggestions?

    • This reply was modified 3 years, 7 months ago by elmariachi09.
    Plugin Author AntoineH

    (@antoineh)

    Also fonts can be changed via CSS. My plugin does not specify any fonts for the front-end (except for some icons).

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

The topic ‘Ranking table CSS’ is closed to new replies.