Hi, in the Grid component, how can I change the “fa-share” icon (that is displayed automatically when linking to another screen) to an “fa-angle-right” please?
Hi, Rob!
Thanks for your question. Unfortunately, the grid component share icon is the default icon for items linked to another screen. But you can overwrite the default CSS using this code:
[data-name="Grid"] .linked-icon .fa-share:before {
content: "\f105";
}
Paste it into the CSS section of a screen with grid component and all items with redirection to another screen will change their icons from default “fa-share” to “fa-angle-right”.
Thanks great - thanks Yuliia. All sorted now!