Changing the tab background from gray to a custom color

mr_njk
Kilo Contributor

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.

find_real_file.png

Cheers

Nidhin

1 ACCEPTED SOLUTION

dewan_pavel
Giga Expert

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



View solution in original post

11 REPLIES 11

Hi Dewan,



How did you derive this syntax ? I would like to implement the same in my instance as well.



Thanks,


Mrudula


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