Reply To: Applying different font to bold

Home Forums Use Any Fonts Applying different font to bold Reply To: Applying different font to bold

#6139
Dinesh
Keymaster

Hi Cai,

You can’t assign both fonts to same elements at once. So you need to have child element inside the parent one.

For example
<h2>This is a <strong>test</strong> </h2>

Here you can assign light to h2. For strong you need to assign using custom elements and it should be h2 strong. This was the test will use bold font and rest text will use light one.

Thanks