ContributionsMost RecentMost LikesSolutionsRe: Add an image in the author information in the message view Hi KaelaC, That's Perfect ! Thanks very much. Have a nice day. Florian Add an image in the author information in the message view Hi, I have create a custom component using context object that displays a specific image regarding the role of the author : <#assign user_has_role = false /> <#if page.name == "ViewProfilePage"> <#list restadmin("/users/id/${page.context.user.id}/roles").roles.role as role> <#if role.name?? && (role.name == "Moderator")> <#assign user_has_role = true /> </#if> </#list> <#elseif env.context.message?? && env.context.message.author.id??> <#list restadmin("/users/id/${env.context.message.author.id}/roles").roles.role as role> <#if role.name?? && (role.name == "Moderator")> <#assign user_has_role = true /> </#if> </#list> </#if> <#if user_has_role?? && user_has_role == true> <img id="display_badge" src="/html/assets/badge-moderateur.png"/> </#if> But I want this <img> to be inserted into the message-author, right here : How can do that ? Thank for your help. Kind regards, Florian SolvedCustom font not applied to board style Hi, I have created a new skin based on an existing one ("News Skin") I have modified the font styles by adding Calibri as the first font for every class (font-family:Calibri,Arial,Helvetica,sans-serif; font-weight:normal;), and saved the change. However, regarding the preview, the new font was not applied to all titles. When I had a look to the css, I realised that the section 'board styles' at the end of the style sheet was not modified. /****** board styles */ So, I manually added the new font from the CSS tab of the Studio and this solved the issue. Was it the easiest way to do? Or did I skip a form dedicated to board styles ? Kind regards, Florian