Stuart Wright
Well-known member
Folks I'm starting my very first steps into Xenforo by putting a custom font in the forum.
I edited extra.css and inserted
and editing the Style Properties: General > body to insert 'Titillium Web', in front of the standard fonts.
But nothing has changed.
What have I done wrong?
I edited extra.css and inserted
Code:
@font-face {
font-family: 'Titillium Web';
src: url('/fonts/Titillium.eot');
src: local('ò∫'),
url('/fonts/Titillium.eot?#iefix') format('embedded-opentype'),
url('/fonts/Titillium.woff') format('woff'),
url('/fonts/Titillium.ttf') format('truetype'),
url('/fonts/Titillium.svg#TitilliumText25L400wt') format('svg');
font-weight: normal;
font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
@font-face {
font-family: 'Titillium Web';
url('/fonts/Titillium.svg#TitilliumText25L400wt') format('svg');
}
}
@font-face {
font-family: 'Titillium Bold';
src: url('/fonts/TitilliumBold.eot');
src: local('ò∫'),
url('/fonts/TitilliumBold.eot?#iefix') format('embedded-opentype'),
url('/fonts/TitilliumBold.woff') format('woff'),
url('/fonts/TitilliumBold.ttf') format('truetype'),
url('/fonts/TitilliumBold.svg#TitilliumText25L999wt') format('svg');
font-weight: bold;
font-style: normal;
}
But nothing has changed.
What have I done wrong?