I reply to all queries on the forums and via email, once per day, Monday to Friday (not weekends).

If you are new here, please see some information on how to ask for support. Thank you!

Reply To: How to change the default plugin layout

dashed-slug.net Forums Faucet extension support How to change the default plugin layout Reply To: How to change the default plugin layout

#4208
alexg
Keymaster

The main file in any child theme is a style.css file.

Make sure that you have created this file correctly and that the child theme is activated.

Then you can add to this file any CSS rules you like.

All the faucet UIs have classes in the markup. These include the class “wallets-faucet” plus some other classes to differentiate between the different UIs.

For instance, to change the color of the background in the “Faucet earnings” table, you would add something like:

.wallets-faucet.referrals-list table { background-color: lightblue; }

Hope this helps.