You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
I am using the Text gadget on my dashboard to provide information to the team. I have a section of the gadget that is centered and another section I want right justfied.
<center>
<font size="+2" color="#4B0082">
<b>
THIS IS THE AREA WHERE THE TEXT IS CENTERED AS EXPECTED
<br>
<right>
<font size="+2" color="#006400">
<b>
THIS IS THE AREA I WANT TEXT TO RIGHT JUSTIFY
BUT IT WILL NOT
IT REMAINS CENTERED
<br>
How do I get the section to justify right?
The tag center is deprecated, use the CSS property text-align instead. Please refer to HTML documentation, for example https://developer.mozilla.org/en-US/docs/Web/HTML/Element/center.
Your HTML for the gadget Text should look like this:
<p style="text-align: center; color: #4B0082; font-size: x-large; font-weight: bold;">
THIS IS THE AREA WHERE THE TEXT IS CENTERED AS EXPECTED
</p>
<p style="text-align: right; color: #006400; font-size: x-large; font-weight: bold;">
THIS IS THE AREA I WANT TEXT TO RIGHT JUSTIFY
BUT IT WILL NOT
IT REMAINS CENTERED
</p>
Please be informed that the Text gadget is deprecated in Jira 9.11, see release notes. You may want to use the Rich Text gadget instead.
Thanks for the info. It has resolved my quandry
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Brenda Henderson, happy to help! Please click the Accept answer button to mark this question as solved.
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.