Hi Jordimopi! I’m only a fellow sensei-user (not a programmer) but you you can inspect the elements on the page (right click what you want t change, if you are on Chrome and select “inspect” from the drop down). On your screen you will see the class used to label items on the page.
For example, when I click on the “Contact Lesson Teacher” button this text is highlighted in the Inspect screen: — class=”button send-message-button” –. that means that .button and .send-message-button control the look of this button (.button has things that show on all the buttons, and .send… just for this one).
You should get a part of your screen that shows you the css styles attributed to these classes. You can use this to test out the styles you want.
Then go to APPEARANCE -> CUSTOMIZE
Scroll to the bottom and you’ll a custom CSS box or link. Add the classes you want. I.e.:
.button {
background-color: white
}
Add !important if it doesn’t work
.button {
background-color: white !important;
}
Hope this helps.
@nataliamdasilva. thanksss
I don’t understand much about css, but your help helps me a lot … since now I have an idea of where to start modifying …
Thank you