Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
1.8k views
in Themes by
Hello  

Please i need to change the font of my website to other font style

My theme is Snowflat RTL
Q2A version: 1.7.1
by
edit the rtl css of the theme
by
it did not work
by
I answered and explained down

1 Answer

+1 vote
by

Good morning 

I want to import this font from google fonts to my web site and use it in all location of my website  

 This is my css file  ( /qa-theme/SnowFlat/qa-styles.css ) 

I inserted this  Google font  

@import url(http://fonts.googleapis.com/earlyaccess/droidarabicnaskh.css);     in the 39 line like this  

.clearfix:after, .qa-q-item-clear:after,
.qa-nav-main-list:after, .qa-nav-sub:after,
.qa-page-links:after, .qa-page-links-list:after,
.qa-template-admin .qa-message-buttons:after,
.qa-q-item-avatar-meta:after, .qa-message-item:after,
.qa-q-view:after, .qa-part-q-view:after, .qa-q-view-content:after, .qa-q-view-buttons:after, .qa-part-form-q-edit:after,
.qa-a-list-item:after, .qa-a-item-buttons:after,
.qa-c-item-buttons:after, .qa-c-item-clear:after,
.qam-footer-row:after, .qam-qa-list-meta-box:after,
.qa-nav-footer-list:after, .qa-footer-clear:after {
    content: " ";
    display: table;
    clear: both;
}
@import url(http://fonts.googleapis.com/earlyaccess/droidarabicnaskh.css);
@font-face {
    font-family: "fontello";
    src: url("font/fontello.eot?2559038") format("embedded-opentype"), url("font/fontello.eot?2559038#iefix") format("embedded-opentype"), url("font/fontello.woff?2559038") format("woff"), url("font/fontello.ttf?2559038") format("truetype"), url("font/fontello.svg?2559038#fontello") format("svg");
}
/*------[ base css ]------*/
html {
    font-size: 16px;
    line-height: 1.5;
}

:-moz-placeholder {
    color: #bdc3c7;
    font-style: italic;
}

and i changed all font-family: "fontello";  by   font-family: 'Droid Arabic Naskh', serif;

But there re no changement  

 

 

by
It's donne

The change is in the qa-styles file
...