This topic is locked
[SOLVED]

 arabic google fonts

7/10/2017 9:32:10 AM
PHPRunner General questions
author

Hello

I want to know to use Google Fonts on phprunner 8
I tried to include In the HEAD section of my page (Visual Editor in HTML mode) the line:

<LINK href="https://fonts.googleapis.com/css?family=Cairo"; rel="stylesheet">



Then in Custom CSS I added this:

.body {

font-family:'Cairo', sans-serif !important;

}}



But this does not work.
I generating a multiple language application which Arabic is the main language

Please help

90288 7/11/2017



https://xlinesoft.com/phprunner/docs/adding_new_fonts_to_style_edit.htm



Thank you very much .. How about changing the font-family for a bootstrap theme, for the whole project or some part of it

admin 7/11/2017

body is a built-in CSS selector, do not add a dot in front of it in Custom CSS

body {

font-family:'Cairo', sans-serif !important;

}
90288 7/12/2017



body is a built-in CSS selector, do not add a dot in front of it in Custom CSS

body {

font-family:'Cairo', sans-serif !important;

}




Thank you very much .. Solved