Page 1 of 1

Related items font color change

Posted: 16 Aug 2016
by Stu
I am getting complaints from my users that the related items are hard to see when printed. I would like to change the color of the font in the related item to black so it is clearer when printed.

How do you change the look of the related items.

Thanks

Stuart

Re: Related items font color change

Posted: 17 Aug 2016
by Dmitry Kozlov
Hi Stuart,

Assign a CSS class to the Related Items control, say 'related-items'. Then insert the following code into CSS-editor:

Code: Select all

@media print {
    .related-items * {
        color: black !important;
    }
}

Re: Related items font color change

Posted: 17 Aug 2016
by Stu
thanks