Header Color Change

Hello!

I didn’t find the magazine’s style sheet template to apply the full color to the head in OJS 3.

Can you help?

Hi @mertoluza

Some of the OJS themes have a color picker in Settings → Website → Appearance

But if the theme you are using does not have a color picker in the settings, you can try adding this to your stylesheet (css):

element.style {

}

.header {

background-color: #XXXXXX;
}

(just replace the XXXXXX to any other HTML color code of your choice)

If it doesn’t work, you can try “main-header” instead:

element.style {

}

.main-header {

background-color: #XXXXXX;

}

Hope this helps!
Best wishes,
Emma

1 Like