Hi Atlassians,
I need to quickly update a message using confluence banner.
Already there is a message with yellow background and text in black color bold.
Now i want a blue background with change in text color. Blue background is done. But, how can I change the text color ?
Below is the code for confluence banner which I have now.
<!-- Message Banner -->
<div style="background-color:Blue; border: 2px solid blue; margin: 4px; ;padding: 2px; font-weight: bold; text-align: center;"><marquee>
Notification 10/23/2017: This is the text message that will scroll on Confluence page.</marquee></div>
Best Regards,
Navadeep
glad to help ;)
Thank you for valuable information Gregory. Sure, I make a note of that as well and make sure I place proper code in the Banner section. :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There's all sorts of fun you can have in there. I use this one for maintenance notices:
<h3 style="text-align: center; color:#B22222;"><code>Notice: 7pm Central, 22 September (Tonight) Jira will go Offline for Upgrade Maintenance.</code></h3>
As long as its valid html you're good. If you screw up the code in the banner you could run into an issue where the application becomes unusable until you hack it out of the database though. So, little warning there :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You're welcome, @Navadeep
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just add the white color to the font:
<div style="background-color:Blue; border: 2px solid blue; margin: 4px; ;padding: 2px; color:white; font-weight: bold; text-align: center;"><marquee> Notification 10/23/2017: This is the text message that will scroll on Confluence page.</marquee></div>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.