two simple questions.
1. How do I hide the cancel all button?
2. How do I apply a specific css style to the cancel all button?
I've played around with trying to do the above two tasks without success. The only success, I got was to write CSS for the button element as follows:
button
{
/* my own css goes here */
}
This worked fine for the cancel all button, however, since the style is against the button element all buttons on the page would pick up that same css style (unless I explicitly set those to a different CSS class. Is there way to do the above tasks without writing css styles against the button element?
Thank you.