Question

How can we apply styles in List Dashboard?

I am looking for a solution to render Unread Social Messages in List Dashboard and the records are expected to be in BOLD. 

 

Product Version  -  7.17.0.2164

Kindly Suggest.

Like 0

Like

2 comments
Best reply

You can add custom css to the section where the dashboard is placed with the code similar to the one below:

.dashboard-listed-grid-module .grid-primary-column{
	font-weight: bolder;
}

this will make the primary column for the dashboard to be in bold text:

All you need is to correctly specify paths to elements on the page in css.

 

Best regards,

Oscar

You can add custom css to the section where the dashboard is placed with the code similar to the one below:

.dashboard-listed-grid-module .grid-primary-column{
	font-weight: bolder;
}

this will make the primary column for the dashboard to be in bold text:

All you need is to correctly specify paths to elements on the page in css.

 

Best regards,

Oscar

Thanks Oscar Dylan, that worked.

Show all comments