I'm using bootstrap in a laravel project and I'm centering text in a circle. I've gotten the text in the circle, but wanted it "bold". I tried doing font-weight:bolder in the CSS and nothing, then also tried adding the class 'font-weight-bolder' from bootstrap and still nothing :|
I had originally tried font-weight-bold as well. I've added the font-weight: 700 !important; but it's not changing it in my blade. If I just create a raw HTML page it changes fine. Thank you!
As a follow up apparently the font family is set to: font-family: "Nunito", sans-serif; which doesn't seem to have bold. So I just need to adjust that one.