1 (edited by porthosl2fx 2015-07-17 08:46)

Topic: Cant change font.

I want to change my forums font to fit with the one i use on my main website.

On my main website i use a google font using the following lines in my css

@import url(http://fonts.googleapis.com/css?family=Varela);
font-family: 'Varela', sans-serif;

That does the trick on my wp site, however i cant seem to be able to change it my punbb forum.

Any ideas about what i can do?

Re: Cant change font.

http://www.w3schools.com/cssref/css3_pr … e_rule.asp

ForkBB
I speak only Russian  :P

3 (edited by porthosl2fx 2015-07-17 12:22)

Re: Cant change font.

That doesnt help at all. Where should i put that and in what way?

Dont get me wrong but its like asking you how to make a cake and you give me only the ingridients.

Re: Cant change font.

In the used style file in the beginning to add a line

@import url("https://fonts.googleapis.com/css?family=Varela");

And replace the line (example for Oxygen style)

     font: 75%/1.5em Verdana,Helvetica,Arial,sans-serif;

to

     font: 75%/1.5em Varela,Verdana,Helvetica,Arial,sans-serif;
ForkBB
I speak only Russian  :P

Re: Cant change font.

Thank you.