Banner behaviour with JIRA 5.0

N
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 21, 2012

Hi,

it seems to me that display of a HTML-Banner has changed

With the following HTML-Banner I want to show the whole text in color RED

<span style="color:red">
<h2 align=center>!! Meldung !! Message !!</h2>
<hr>
<i> Dies ist eine Testumgebung - kein produktiver Betrieb / This is a test environment - no production </i>
<br>
<h align=center>Datenstand / date of data : 04-Dez-2011!</h>
</span>

But only the text

Dies ist eine Testumgebung - kein produktiver Betrieb / This is a test environment - no production
Datenstand / date of data : 04-Dez-201

is displayed RED

What has changed, or what do I have to do?

Thanks for any help

Norbert

1 answer

1 accepted

1 vote
Answer accepted
Jobin Kuruvilla [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 21, 2012

Looks like a CSS gotcha. h2 must have a defined CSS in jira 5. Just include the style attribute on h2 as well.

<span style="color:red">
<h2 align="center" style="color:red">!! Meldung !! Message !!</h2>
<hr>
<i>  Dies ist eine Testumgebung - kein produktiver Betrieb / This is a test environment - no production </i>
<br>
<h align=center>Datenstand / date of data : 04-Dez-2011!</h>
</span>

Suggest an answer

Log in or Sign up to answer