Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
1.2k views
in Themes by
hi

how i can change the font style for the snow-RTL theme

the new font style is "Droid Arabic Naskh"

i try on style.css

 

h1 {
    color:#444;
    font-size:20px;
    font-weight:700;
    margin:0.5em 0 25px;
    font-family:Droid Arabic Naskh;
    font-weight:700;
    line-height:1.1em;
    border-bottom:1px solid #ddd;
    position:relative;
    padding:14px 25px 5px 0;    
}

 

but nothink changed

1 Answer

0 votes
by

Firstly, you need to put the font name in quotes, like this

font-family: "Droid Arabic Naskh";

Secondly, that font will only show if visitors have that font installed on their system, unless you also use webfonts like from Google fonts.

...