Color Button

Color Button

Adriano ErasmoAdriano Erasmo Posts: 1Questions: 0Answers: 0

Hello, How to put a color for each type of button. Type: CSV button color green.

Replies

  • bindridbindrid Posts: 730Questions: 0Answers: 119

    The first class turns the first button green
    the second one turns of the button images so the color shows through ( but as is, it applies to all buttons).
    You would probably want to add a hover (mouse over) color too.

    .dt-buttons a:nth-child(1){
        background-color:LightGreen;
    }
    button.dt-button, div.dt-button, a.dt-button
    {background-image:none;}
    
  • allanallan Posts: 61,971Questions: 1Answers: 10,160 Site admin

    You can also use buttons.buttons.className to add a custom class to a button, giving you the ability to then add suitable CSS for it.

    Allan

This discussion has been closed.