MyBB Community Forums

Full Version: SCEditor change "Bold" weight
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
instead of it being font-weight: bold; when you click on the bold icon I'd like it to return font-weight: 500; how would I go about doing this.
you can try using below style code at bottom of the theme's global.css

.post_content strong {font-weight: 500 !important;}
.post_content b {font-weight: 500 !important;}
(2016-03-10, 05:44 AM)Nasro Wrote: [ -> ]when you click on the bold icon I'd like it to return font-weight: 500;

but as per css, 400 is same as normal and 700 is same as bold.. so, if you put 500 the text wont be bold at all..
(2016-03-10, 07:27 AM)mmadhankumar Wrote: [ -> ]
(2016-03-10, 05:44 AM)Nasro Wrote: [ -> ]when you click on the bold icon I'd like it to return font-weight: 500;

but as per css, 400 is same as normal and 700 is same as bold.. so, if you put 500 the text wont be bold at all..

I use roboto globally on my site, and roboto has quite a few different weights, including 500 which I prefer over 600/700 bold.
Bump, the font-weight: bold; is inline obviously so that solution didn't work. I'm pretty sure it's a core edit, some help would be very appreciated.