Changing the Jira Font

StevenL August 22, 2012

Hi guys,

So I've applied some basic CSS using the announcement banner to change the font to Verdana as widely as possible:

<style>
body
#jira {

font-family: verdana;
}
</style>
However, the only section which hasn't appeared to have updated is the 'Create Issue' pages. Is anyone aware of the css tag for this?

1 answer

0 votes
Penny Wyatt (On Leave to July 2021)
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
August 23, 2012

I'm assuming you're referring to the quick-create popup dialog in newer JIRA versions? If so, it looks like on that dialog the style is there but is being overridden by more specific styles.

Perhaps try something like this?

&lt;style&gt;
body#jira p, ul, ol, dl, h1, h2, h3, h4, h5, h6, form.aui, table.aui, .aui-tabs, .aui-panel, .aui-group
{
    font-family: verdana;
}
&lt;/style&gt;

Suggest an answer

Log in or Sign up to answer