- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2024 11:17 PM
Hi there,
I want to change the background color of the navigation bar. Does anyone here know how to do this? Please help me find a solution
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2024 05:43 AM
Hey @LinhN ,
Please create a UI script as below:
(function() {
addAfterPageLoadedEvent(function() {
var backgroundColor = '#FFFF00'; // give value of your color
$$('.navbar').each(function(elmt) {
elmt.style.backgroundColor = backgroundColor;
});
});
})();
Output-
Please mark this as "correct" and "helpful" if you feel this answer helped you in anyway.
Thanks and Regards,
Ashish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-15-2024 05:43 AM
Hey @LinhN ,
Please create a UI script as below:
(function() {
addAfterPageLoadedEvent(function() {
var backgroundColor = '#FFFF00'; // give value of your color
$$('.navbar').each(function(elmt) {
elmt.style.backgroundColor = backgroundColor;
});
});
})();
Output-
Please mark this as "correct" and "helpful" if you feel this answer helped you in anyway.
Thanks and Regards,
Ashish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-17-2024 05:28 PM
Thank you so much. This API has been working well.