Sample CSS file

Hello I hope you are well

Does anyone have a sample CSS file that I can borrow so that I can modify a magazine template in ojs 3.3.x?

Beforehand thank you very much.

CSS are regular text files with .css extenssion.

Here you have a detailed explanation about how to create your own CSS file:
https://docs.pkp.sfu.ca/designing-your-journal/en/creating-stylesheet

There are no examples, because they depend on the changes you like to make.

For instance, if you want to modify you article’s title you will only need to add a text file with this content:

.obj_article_summary .title {
    color: #CCC;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
}

But you need some technical skills to understand what you are doing.
Otherwise, wired things could happen and we won’t be able to help you from this forum.

So… to add your CSS, you need to learn CSS first, and then… you will probably don’t need example because you will be able to read and understand OJS ones. :wink:

Cheers,
m.

Dear Marc, thank you very much for your great help

Regards.