Issue With CSS on Website
Opened this issue · 0 comments
Hi, I recently discovered Macfusion through your website http://macfusionapp.org and I really love the program.
This GitHub issue isn't with Macfusion itself, which works great, but rather with the website loaded from the gh-pages
branch of the repository.
I noticed that my browser's backup font was used on the page which only happens when there are no fonts specified or if my browser does not have access to any of the specified fonts. The CSS is set on <body>
to font-family: "Helvetica,Arial,FreeSans";
This tells the browser to look for a single font named Helvetica,Arial,FreeSans which doesn't exist.
The correct CSS should be set to font-family: Helvetica, Arial, sans-serif;
.
Setting the CSS to this is what I assume is what was originally intended since the text matches nicely with the image graphics of text. Simply changing the font-family
won't do though because Helvetica is too large for some of the fonts.
I'll submit a pull request to fix this when I have the chance.