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.
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
Custom Button Colours?
-
- nuBuilder Team
- Posts: 4301
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 445 times
- Contact:
Re: Custom Button Colours?
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' });