ElementUX
05-04-2022Cloud Apps
Change widget header background color
Trying to change the widget title background color. I am using custom css code for card look.
The following widget code allows me to change border radius/color. Trying to use similar "widget-header' to no avail. Any ideas? Thx!
$('.widget')
.css('border-radius','10px')
.css('border', '#c8c8c8 solid 1px');
$('.widget-header')
.css('background-color','#f2f2f2');
Remove the period (.) from '.widget-header'
$('widget-header') .css('background-color','#f2f2f2');
-Hari