How to increase boldness of specific words.

Solved
sanjivp27
Excursionist
15 0 4

In the home page, in the "Our Process" and "Our Impact" sections, the first word in every sentence is bolded. However, it is not very noticeable. How do I increase the boldness for these words?

Thank you

url: sisubracelets.us

Accepted Solution (1)
PaulNewton
Shopify Partner
5620 513 1186

This is an accepted solution.

Maxing out values leaves no room for design decisions later:winking_face:

The font for that font is too high on headingsandbody content.

Decrease the body font instead to 300 or less as having all content be bold is what's ruining the visual weight of the headings and the site overall.

Then increase the size of tag in css by a small step in size for modern browsers.

.subtitle p strong { font-size: calc(2.3rem + 1px); }

replace 2.3rem with any code that is generating the number for the .subtitle class.

New Feature: Automatic free shipping discounts


Confused? Busy? Get the solution you need paull.newton+shopifyforum@gmail.com


Problem Solved? ✔Accept and Like solutions to help future merchants

Answers powered by coffeeBuy Paul a:hot_beverage:Coffee for more answersor donate to eff.org


Defeat problems ,Learn To Ask Questions The Smart Way

View solution in original post

Replies2(2)
PaulNewton
Shopify Partner
5620 513 1186

This is an accepted solution.

Maxing out values leaves no room for design decisions later:winking_face:

The font for that font is too high on headingsandbody content.

Decrease the body font instead to 300 or less as having all content be bold is what's ruining the visual weight of the headings and the site overall.

Then increase the size of tag in css by a small step in size for modern browsers.

.subtitle p strong { font-size: calc(2.3rem + 1px); }

replace 2.3rem with any code that is generating the number for the .subtitle class.

New Feature: Automatic free shipping discounts


Confused? Busy? Get the solution you need paull.newton+shopifyforum@gmail.com


Problem Solved? ✔Accept and Like solutions to help future merchants

Answers powered by coffeeBuy Paul a:hot_beverage:Coffee for more answersor donate to eff.org


Defeat problems ,Learn To Ask Questions The Smart Way

sanjivp27
Excursionist
15 0 4

Great. Thank you.