- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-09-2016 05:47 PM
Hi,
Has anyone tried changing the background of the tabs? I have a requirement to change the background color of the tabs to match the company theme and I am unable to figure out where to change it. Below is an example. I would like to have the background for Schedule, Conflicts etc set to Blue instead of the default gray.
Cheers
Nidhin
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-09-2016 10:12 PM
Hi Nidhin
Though it is not recommended as it may have performance impact, but you can try the following code within onload client script for global table:
$j('.tabs2_tab').css({
'background-color' : 'your desired color code',
});
Thanks
Dewan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-09-2016 11:18 PM
Hi Dewan,
How did you derive this syntax ? I would like to implement the same in my instance as well.
Thanks,
Mrudula
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-19-2016 07:00 PM
Hi Mrudula
Clearly this is DOM manipulation. You can find id or class of any document object by using browser's development tool. And then change the CSS for that desired id / class.
If you want to implement this in your instance, feel free to use the code.
Thanks
Dewan
PS: Hit like, Helpful or Correct depending on the impact of the response