System font, need tahoma.

testam123

Member
Hi!
I set my language, but system font is not coretly, me need tahoma font.
Where and how can I change the system font?

Aivars.
 
Create a file called style-custom.css in backend|customer|frontend/assets/css folder and declare your custom css changes there.
 
upss, sorry, I dont create this file... please, maybe I can ask you create file and send me this file, and I only adding this file. Help me?
 
That's the general font of the app.
the style-custom.css file can contain these:
Code:
body {
font-family: Tahoma, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
font-family: Tahoma, sans-serif;
}
and will fix your issue :)
 
yes, I create file, upload (in backend|customer|frontend/assets/css).
But system not automatic use this css-custom file, when me need say used this file?
 
If you look in page source(right click, view source), do you see this new style referenced in a
Code:
<link href='...' rel='stylesheet' type='text/css'>
tag ?
Did you actually tried to put that file inside /info/mail/customer/assets/css folder for example ?
 
Back
Top