Join the #BuildWithBuildAgent Challenge! Get recognized, earn exclusive swag, and inspire the ServiceNow Community with what you can build using Build Agent.  Join the Challenge.

How add colour to button

APV Babu
Tera Contributor

Hi Every one!!!!

 

I created one new button "plan document team request" in incident form I want to add 'blue' color for the button 

I am trying with this code but I couldn't

 

 

 

 

 

 

 

function onLoad() {
changeButtonColor('plan_document_team_request', '#0000FF');
}

function changeButtonColor(buttonID, backgroundColor) {
try {
//Find the button(s) by ID and change the background color
$$('button[id=' + buttonID + ']').each(function(elmt) {
elmt.style.backgroundColor = backgroundColor;
elmt.style.color = '#ffffff'; //make the button text white
});
}catch(e){}
}

1 ACCEPTED SOLUTION

@APV Babu Add one more css for bottom button just like

 

#plan_document_team_request_bottom {

//Add the color as you added for up button

}

 

Please mark as correct answer if this solves your issue.

Please mark the answer as correct or helpful based on impact
ServiceNow Community Rising Star, Class of 2023

View solution in original post

10 REPLIES 10

@APV Babu Can you please mark as correct answer

Please mark the answer as correct or helpful based on impact
ServiceNow Community Rising Star, Class of 2023