OJS 3 Manuscript

Hi,

I use OJS version 3.2.1.4 and would like to know how to align the logo in the center of the header. The template I use is OJS 3 Manuscript.

Captura de Tela 2022-11-13 às 06.12.43

Regards,
Filipe

Hi @filipekjp,

You can customize the look and feel of your journal using the Custom Stylesheet option from your journal Dashboard.

Please, create a file (e.g.: custom.css) and add the following lines in it:

.pkp_site_name_wrapper {
display: flex;
justify-content: center;
}

.pkp_site_name {
text-align:center;
}

This will adjust your logo in the center of header section. Notice, you will need to upload the file via : Dashboard > Website > Appearence > Advanced > Journal Style Sheet , and clear your system and local cache to fetch the new code.

Best,
Israel

1 Like