• Resolved jordimopi

    (@jordimopi)


    hi … there is no possibility to change the colors or styles of the buttons … for example the blue to contact the teacher ..?
    everything has to be CCS, for those of us who do not master this much, an aid would be great for us to do something as simple as changing color, but which I do not know for example

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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.

    Thread Starter jordimopi

    (@jordimopi)

    @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

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘customize courses and lessons’ is closed to new replies.