Page 1 of 1

Custom Button Colours?

Posted: Thu Jul 15, 2021 3:48 pm
by pmjd
I have a group of 4 buttons on a tab and would like 2 of them to be a different background colour to the others to seperate them.
How can this be achived?

I can put span classes inline in to change the colour/formatting of text but can't see where/how to do this for specific buttons' background.

Any help would be appreciated.

Re: Custom Button Colours?

Posted: Thu Jul 15, 2021 4:17 pm
by kev1n
In the form's Custom Code, add a something like this JS:

Code: Select all

$('#your_button_id').css({ 'background-color': '#f38617', 'color': 'white', 'border-color':'#87521c' });

Re: Custom Button Colours?

Posted: Thu Jul 15, 2021 4:33 pm
by pmjd
Fantastic, thank you yet again kev1n.