NeuroGrid / folk-on-the-hill

For the Harrow Folk Festival
MIT License
0 stars 2 forks source link

need to support italics bold and underline in the biographies #46

Closed tansaku closed 5 years ago

tansaku commented 5 years ago

netlify if passing them through, but there is no associated style change

javpet commented 5 years ago

which parts should be bold and underline in the text?

tansaku commented 5 years ago

@javpet we want to specify with em and strong tags in the biography text - see here:

em tags passed through but style not changed - maybe need to specify explicitly for that font?

javpet commented 5 years ago

The bold text is possible to specify by font-weight: 700, but the chosen English Grotesque font is not supporting 'italic' so the browser will imitate the 'italic' look & feel

Maybe with inline styling?

tansaku commented 5 years ago

@javpet what would inline styling involve?

javpet commented 5 years ago
<span style="font-weight: 700">{content here}</span>
<span style="font-style: italic">{content here}</span>
tansaku commented 5 years ago

cool - and maybe we could even add that to css for the section like:

i, em {
  font-style: italic;
}

?

javpet commented 5 years ago

Yeah that might be working too