See the attachment. Both cyrillic and latin text looks weird.

Is there any easy opportunity to change main font?

CommentFileSizeAuthor
#1 platon2.png72.95 KBvabue
platon-theme-font.png106.04 KBvabue
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

vabue’s picture

FileSize
72.95 KB
wadmiraal’s picture

Hi.

Sorry for the late replay, I did not see this new issue.

Source Sans Pro does not support Cyrillic, unfortunately :-(. And we did not provide a way to deactivate it from the UI.

The solution would be to create a very simple subtheme. Add your own CSS file to it (ex: `css/font.csss`) and put the following rule inside:

body {
  font-family: Helvetica, Arial, sans-serif;
}

That will do the trick. If you need help on how to create a subtheme, just let me know.

wadmiraal’s picture

Status: Active » Closed (won't fix)
tigos2’s picture

Version: 7.x-2.2 » 7.x-2.6

Add to "CSS overrides" section of theme settings (/admin/appearance/settings/platon) the two lines code:

@import url(http://fonts.googleapis.com/css?family=Exo+2:400,600,900&subset=latin,cyrillic,latin-ext);

body { font-family: 'Exo 2', sans-serif; }