I am trying to change the panel title bold)and description (normal).
For Panle Title i can add a css in my xml and i could change it to Bold, but how to change the Description from bold to normal**
1st line is title
2nd line is descritption
I could do some thing like below and achieved this
<panel>
<html>
<style>
.dashboard-row .dashboard-panel h2.panel-title {
font-weight: bold !important;to override the existing css
font-size: 15px !important;to override the existing css
}
.dashboard-row .dashboard-panel h3.dashboard-element-title {
font-weight: normal !important;--------------------to override the existing css
font-size: 15px !important;----------------to override the existing css
}
</style>
</html>
</panel>