Version 9.02

I’m using version 9.02 for one of my sites that I’m upgrading. I set H1 to 3em and the color red. Save and exit, only to find my H1 is 40px and color blue… Inspecting the element I found in the bootstrap-modified file
/testing/
div.ccm-page h1 {
font-size: 40px !important;
text-align: center;
font-weight: 600;
color: #0000FF !important;
}
And that is overriding anything anything I set in styling or custom CSS…
Did someone forget to take it out??
Bob

I don’t know full story of your theme, from which version it came, was it modified, is it custom theme etc.
But you can just use “!important” rule in your css code too, so you will be able override styling.
If you are overriding by the same selectors, order of css files is important.
Remember about css specificity otherwise:

I just checked 9.0.2 and it seems there are no !important rules for h1.

I know this might sound rudimentary but have to cleared your browser cache. I mean REALLY cleared it! I always open a troublesome page in a seldom-used browser and see if the problem exists before I hunt for bigger issues. Excuse this comment if you’re well past that stage.