Simple Machines Community Forum

Customizing SMF => Graphics and Templates => Topic started by: Speed King on January 03, 2023, 01:45:36 PM

Title: Change font-weight in drop-down menus
Post by: Speed King on January 03, 2023, 01:45:36 PM
Hello,

I use custom font in my forum. The font is called Lora:

https://fonts.google.com/specimen/Lora

By default, items in drop-down menus are loaded with normal font weight (400) and it's hard to read for me.

Click => (https://i.postimg.cc/Vr6dqbXS/2023-01-03-5.png) (https://postimg.cc/Vr6dqbXS)

I wish to increase font-weight in those menus to Medium (500), but cannot find the proper code in index.css file.
Title: Re: Change font-weight in drop-down menus
Post by: Sesquipedalian on January 03, 2023, 02:55:03 PM
Unfortunately, there's not much you can do about that. It's controlled by the browser, not the site's CSS.

EDIT: Actually, the font weight is one of the few things you can control. Make this change in index.css:

Code (Find) Select
select {
padding: 0.22em 0.2em; /* selects don't apply line-height */
}

Code (Replace) Select
select {
padding: 0.22em 0.2em; /* selects don't apply line-height */
font-weight: 500;
}
Title: Re: Change font-weight in drop-down menus
Post by: Speed King on January 04, 2023, 12:28:09 AM
I made this edit in index.css, but only text in select field is changed, not the drop-down menu.

Click => (https://i.postimg.cc/GT4svgZT/2023-01-04-1.png) (https://postimg.cc/GT4svgZT)
Title: Re: Change font-weight in drop-down menus
Post by: Speed King on January 04, 2023, 01:01:06 AM
Problem solved for now, by changing font-weight in font declaration:

@font-face {
font-family: 'Lora';
font-style: normal;
font-weight: normal;
src:local("Lora"), url('https://bg-nacionalisti.org/fonts/Lora-Regular.woff2') format('woff2');
}

Changed to:

@font-face {
font-family: 'Lora';
font-style: normal;
font-weight: 500;
src:local("Lora"), url('https://bg-nacionalisti.org/fonts/Lora-Regular.woff2') format('woff2');
}

But I don't know if that will affect text in another forum places  ::)