this issue seem to escape me, but after a few attempts, this seems to fix it:Jeremy Bernstein wrote:Thanks for the heads up!pgn4web wrote:On second thought, it seems this fix is not really working as expected... I'll try figuring out why...
1) leave the fonts/*.css files unchanged
2) modify two elements of board.html
2.1)
Code: Select all
.header {
color: black;
font-weight: bold;
}
Code: Select all
.header {
font-family: 'pgn4web Liberation Sans', sans-serif;
color: black;
font-weight: bold;
}
Code: Select all
.comment,
.nag {
color: gray;
line-height: 1.3em;
}
Code: Select all
.comment,
.nag {
font-family: 'pgn4web Liberation Sans', sans-serif;
color: gray;
line-height: 1.3em;
}