Hello, How to put a color for each type of button. Type: CSV button color green.
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;}
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.
buttons.buttons.className
Allan
It looks like you're new here. If you want to get involved, click one of these buttons!
Replies
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.
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