Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have Bild the table chart and and i want to change 1 row bold and 2nd row medium. How i can do that can you help me on this urgent requirement. Thank you
try using below CSS script
.qv-st table th:first-child{
font-weight: bold;
}
You can replace td with tr for making specific row bold too.
.qv-st table td:nth-child(2){
font-weight: bold;
}
For Making column 2 and 4 bold use this
.qv-st table th:nth-child(3){
font-weight: bold;
}
.qv-st table th:nth-child(7){
font-weight: bold;
}
If you want values to be bold just replace th with td