Really big/thick font

Hello,

Please refer to this site https://www.cyberpowerpc.com/ . I need my h2 to be the same size as “Popular Prebuilt Systems” font. Changing the Typography on my site does not get the font to be that big. I tried the css below from cyberpowerpc.com but it doesn’t seem to work either.

h2 {
font-size: 3.8rem;
font-weight: 900;
}

Probably there are other, more powerful CSS rules which control this element font.

You may try adding !importan at the end of each property value, like this (though this is not the best practice):

h2 {
  font-size: 3.8rem !important;
  font-weight: 900 !important;
}

Or use a more powerful selector, like:

body h2 {
 ...
}

But to suggest this properly it’s necessary to see your page.

1 Like

Thanks for your help. I now have a better understanding of the problem.