Hi there. Does anyone know any CSS code we could use to try to change the colour of the announcements feature in Freshservice (front-end)? We are looking to find a way to make it stand out more from our portal banner. Or even if we could re-position it into the white space below that could also be a solution. I have attached a screenshot and included the current code for the Announcement View (under service desk re-branding settings):
{{#if showLoader}}
<div class="announcement-detail-loader">
{{> loader}}
{{> loader}}
</div>
{{else}}
<div class="announcement-detail-nav">
<a href="/support/announcements" class="back">
<span class="ficon-arrow-left back-icon" role="presentation"></span>{{translate "portal.announcements_sidebar.back_to_announcements"}}
</a>
</div>
<article class="announcement-detail-container">
<header class="announcement-detail-header">
<div class="announcement-postedby-img">
{{avatar name=user.name url=user.avatar_url class="user-profile-pic"}}
</div>
<div class="announcement-content">
<h1 tabindex="-1" id="announcement-detail-title" class="announcement-title announcement-detail-title">{{title}}</h1>
<p class="announcement-postedby">{{{ translate "portal.announcements_sidebar.posted_by" user_name=user.name created_on=(timediff planned_start_date) }}}</p>
</div>
</header>
<div class="announcement-detail-description">{{safe_string description}}</div>
</article>
{{/if}}
Thanks in advance. :)