When you exit the WordPress admin panel, the font changes to another. Here is the link I wonder what changes only Russian and English remains. Put all the main fonts of Open Sans. here is the CSS

body, button, input, select, textarea { color: #092f40; font-family: 'Open Sans', serif; font-size: 14px; font-size: 1.4rem; line-height: 18px; } /* Headings */ h1,h2,h3,h4,h5,h6 { clear: both; margin-bottom: 10px; } h1{ font-size: 36px; font-family: 'Open Sans', serif; font-weight: 400; } h2{ font-size: 24px; font-family: 'Open Sans', serif; font-weight: 400; } h3{ font-size: 18px; font-family: 'Open Sans', serif; font-weight: 400; } h4{ font-size: 16px; font-family: 'Open Sans', serif; font-weight: 400; } h5{ font-size: 14px; font-family: 'Open Sans', serif; font-weight: 400; } h6 { font-size: 12px; font-family: 'Open Sans', serif; font-weight: 400; } hr { background-color: #ccc; border: 0; height: 1px; margin-bottom: 1.5em; } 

  • If you are given an exhaustive answer, mark it as correct (a daw opposite the selected answer). - Nicolas Chabanovsky

1 answer 1

Drew attention to the fact that you are somehow strangely connecting the font, it is better to do it differently.

We connect to the head :

 <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700&subset=latin,cyrillic' rel='stylesheet' type='text/css'> 

In css -

 .class { font-family: 'Open Sans', sans-serif; font-weight: 400; } 

If the font is changed to Helvetica , then you need to change it in bootstrap.css to the one you need.

Also, if you want to use “your” font everywhere, it makes sense to write like this * {font-family: 'Open Sans', sans-serif;}

  • Thank you. The issue is resolved. - Ivan