Ojs 3 background image

Hi,
In OJS 2.x I could use an image as background in the header section by writing a css with:
#header {
background-image: url(‘http://ojs.statsbiblioteket.dk/public/journals/139/topbanner-bgr.png’);
See: LexicoNordica
As you can see I saved the image in the public file, but how shall I do that in OJS 3?
Regards
Niels Erik

Hi @nef

You can style your theme header coding CSS lines as showing bellow:

.pkp_structure_head {
background-color: transparent;
border-bottom: 1px solid #ddd;
background-image: url(https://tidsskrift.dk/public/journals/139/topbanner-bgr.png);
background-repeat-y: no-repeat;
background-repeat-x: repeat;
}

Regards,
Israel Cefrin
Public Knowledge Project Team

1 Like

Hi Israel
Thank you very much for your answer. I can really use that although it wasn’t exactly that, that asked for. I was just interested in finding out if you could set up a folder in OJS 3.x like the public folder in OJS 2. Now I can see that I didn’t use the right word for folder in my question.
Meanwhile I found out that you can go to the Workflow Settings > Publisher Library and save a document in for example ‘Other’ and do the same:
public
But again, you helped me making the CSS. Thank you.
Regards
Niels Erik