0

I have edited the common.css file to change the size of the headers. More precisely, my code is

#bodyContent h2{font-size:100px; color: blue;}
#bodyContent h3{font-size:100px; color: blue;}
#bodyContent h4{font-size:100px; color: blue;}
#bodyContent h5{font-size:100px; color: blue;}

It does not work. It seems that another css file is loaded after common.css. I think it is the css file related to a skin.

How can I override the css commands of the skin in common.css?

Colas
  • 3,473
  • 4
  • 29
  • 68

1 Answers1

0

Use !important.

#bodyContent h2{font-size:100px !important; color: blue !important;}
#bodyContent h3{font-size:100px !important; color: blue !important;}
#bodyContent h4{font-size:100px !important; color: blue !important;}
#bodyContent h5{font-size:100px !important; color: blue !important;}
Colas
  • 3,473
  • 4
  • 29
  • 68