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!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Custom Button Colours?
-
- nuBuilder Team
- Posts: 4565
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 529 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' });