[ad_1]
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.
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!
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 🙁
I got it.
I installed a Custom CSS plugin and it works.
Thank you so much for share your work!
