Hi All,
I need to make the last record in the table as bold . How can i do this?
Please find the attachment , and the highlighted text that needs to be bold.
Thanks
Shivangi
Hi @Shivangi Thakur
List css:
.list-item:last-of-type{ font-weight: bold; }
Table css:
.table-row:last-child{ font-weight: bold; }
Best regards,
Miguel Sousa
Hi Miguel,
Its a Table.
I'm sorry I misunderstood your question. I've edited my response with the css for a table
Thanks Miguel , that worked..
I have one more query , i want to put asterisk beside total cost , like "Total Cost *" and i want the asterisk to be in blue colour . If you have any solution for this then pls let me know .
You could add a text inside an if (to show or hide the text) next to the expression with the class "text-blue".
Thanks Miguel ,
It worked .. :)