AVID:Requests for Comment/Fix the bold text problem

From the Audiovisual Identity Database, the motion graphics museum

Revision as of 12:18, 6 December 2022 by ScarletViolet (talk | contribs) (Created page with "I saw the code for the font face here, but it looks like there has been a problem. The logo remained not bold or a bit bold whenever you make the text bold. I suggest that the following code: <pre> @font-face { font-family: 'AVID Sans Bold'; src: url('https://static.miraheze.org/avidwiki/6/6f/CLGSans-Bold.ttf'); } </pre> should be changed to: <pre> @font-face { font-family: 'AVID Sans'; font-weight: bold; src: url('https://...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

I saw the code for the font face here, but it looks like there has been a problem. The logo remained not bold or a bit bold whenever you make the text bold. I suggest that the following code:

@font-face {
    font-family: 'AVID Sans Bold';
    src: url('https://static.miraheze.org/avidwiki/6/6f/CLGSans-Bold.ttf');
}

should be changed to:

@font-face {
    font-family: 'AVID Sans';
    font-weight: bold;
    src: url('https://static.miraheze.org/avidwiki/6/6f/CLGSans-Bold.ttf');
}

and that

classname {
    font-family: 'AVID Sans Bold';
}

should be changed to:

classname {
    font-family: 'AVID Sans';
    font-weight: bold;
}

Support

Oppose

Abstain

Comments

Cookies help us deliver our services. By using our services, you agree to our use of cookies.