Decrease the size of article title

Hi all,
I am using Ojs 3.0.1 with manuscript theme. Is there any way or css code to decrease the size of article title?

Thanks

Hi @kawahyu,

Yes, you can upload an additional CSS file to augment the Manuscript theme in the Appearance tab of the settings area. The article title is h1.page_title. You’ll need a little bit of CSS experience to do this.

Regards,
Alec Smecher
Public Knowledge Project Team

Thanks @asmecher for the response
I tried this

h1.page_title {
font-size: 20px;
}

but nothing changes

Hi @kawahyu,

I would suggest using a developer tool like Firebug for Firefox to inspect how styles are applying to your site. If you can provide me a link to the article, perhaps I can spot the problem.

Regards,
Alec Smecher
Public Knowledge Project Team

Here is one of the article links

http://jurnalbeta.ac.id/index.php/betaJTM/article/view/7

thanks @asmecher

Hi @kawahyu,

Thanks – it looks like you’re encountering Custom uploaded CSS files get loaded too early · Issue #2266 · pkp/pkp-lib · GitHub. There’s a patch you can apply at the issue’s page (in this case, in the lib/pkp subdirectory).

Regards,
Alec Smecher
Public Knowledge Project Team

It means that I have to customize the codes using

pkp/pkp-lib#2266 Respect asset priority values when loading styles

in

classes/template/PKPTemplateManager.inc.php

?

Hi @kawahyu,

The raw patch file is available here. Here is some general information on working with patch files (talking about Drupal in this case, but the information applies equally to our software): https://www.drupal.org/patch/apply

Regards,
Alec Smecher
Public Knowledge Project Team