OMP 3.2.1.1 problem custom css

Hi!

I have a CSS problem. In OMP 3.1.1.4 version I could change the font of the website by uploading a css file in “Press style sheet”.
In version 3.2.1.1 my custom css file doesn’t work.
What has changed in OMP version 3.2.1.1 related to uploading custom css files?

Hi @David_Alarcon_davidy,

Can you describe what you mean when you say the file doesn’t work? That feature should be available in OMP 3.2.1-1 just as it was in OMP 3.1.1-4.

Regards,
Alec Smecher
Public Knowledge Project Team

1 Like

Hi… @asmecher
Thank you very much for answering.

The problem occurs because some html “tags” have changed in version 3.2.1.1 …

For example:

In OMP 3.1.1.4
h3 class = “label” Synopsis

But in OPM 3.2.1.1 it is
h2 class = “label” Synopsis

That was the reason why I was not seeing the expected changes.
This CSS code worked in OMP 3.1.1.4 version and it does not work in OMP 3.2.1.1 because it changed its label.

For OMP 3.1.1.4 this is the code:

div.page.page_book h3.label {
font-size: 1.3em;
text-transform: uppercase;
}

For OMP 3.2.1.1 this is the code:

div.page.page_book h2.label {
font-size: 1.3em;
text-transform: uppercase;
}

What I have to do is check and adjust the css codes according to the changes in the new OMP version.

Thank you very much for your help.

Sorry for my English.

1 Like