You could change the code in the file ‘public > class-ctcc-public.php’, adding extra classes.
Find this code:
// The main bar content
$notification_text = wp_kses_post ( do_shortcode( $ctcc_content_settings['notification_text'] ) );
$notification_text = apply_filters( 'ctcc_notification_text', $notification_text );
$content .= sprintf (
'<span class="ctcc-left-side">%s %s</span><span class="ctcc-right-side">%s</span>',
$notification_text,
$more_text,
$button_text
);
… and replace it with this code:
// Message
$notification_text = wp_kses_post ( do_shortcode( $ctcc_content_settings['notification_text'] ) );
$notification_text = apply_filters( 'ctcc_notification_text', $notification_text );
$content .= sprintf (
'<div class="ctcc-left-side">%s</div>',
$notification_text
);
// Link 'Read more'
$content .= sprintf (
'<div class="ctcc-center">%s</div>',
$more_text
);
// Button
$content .= sprintf (
'<div class="ctcc-right-side">%s</div>',
$button_text
);
Now use your stylesheet to add some styles to the three different parts, using ‘ctcc-left-side’, ‘ctcc-center’ and ‘ctcc-right-side’.